diff options
author | Camil Staps | 2017-07-17 22:44:24 +0000 |
---|---|---|
committer | Camil Staps | 2017-07-17 22:44:24 +0000 |
commit | 23eeaac32323bf70c1f84cb9a13d9e5a57bc04ee (patch) | |
tree | eacc5b8b57946bd5e26d010f5c689699f47150ed /test.sil | |
parent | Initial commit (diff) |
Fix some incorrect ABC instructions
Diffstat (limited to 'test.sil')
-rw-r--r-- | test.sil | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,5 +1,12 @@ Int main () { Int x; + Int y; + Int z; x := 100; - return x; + y := 50; + z := x; + x := y; + y := z; + z := x; + return z; } |