Files
mysysy/test/24_test_cp_cf.sy
2025-02-27 23:14:53 +08:00

15 lines
212 B
Plaintext

//test file for constant propogation (cp) and constant folding (cf)
int main(){
int b = 5;
int c = 4 * b;
int d, g;
if(c > 8){
d = b + c;
}
g = c * d;
return g;
}