Initial commit from sysy-main
This commit is contained in:
11
test/23_test_vn.sy
Normal file
11
test/23_test_vn.sy
Normal file
@ -0,0 +1,11 @@
|
||||
//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;
|
||||
}
|
||||
Reference in New Issue
Block a user