Copy pre-increment values into registers

This commit is contained in:
Andrew Morris
2023-03-31 17:39:32 +11:00
parent 03f7b8fa74
commit c25ebe2e14
3 changed files with 16 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
// test_output! 3
export default function main() {
let x = 0;
return ++x + ++x;
}