11 lines
148 B
Plaintext
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;
|
|
} |