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

11 lines
148 B
Plaintext

//test file for value numbering (vn)
int main(){
int a, b, c, d;
a = 1;
b = a + 1;
c = a;
d = c + 1;
return d;
}