diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-06-11 09:46:33 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-06-11 09:46:33 -0700 |
commit | 0ad87244178badf26cd5c8e0ed88116e87026472 (patch) | |
tree | db19d53d4548391d316fec33954ed7d5d3cfb68b /tools/test-js-optimizer-asm-last-output.js | |
parent | a1eb425371aa310e074b06d80d56adf71d6f5383 (diff) | |
parent | 886e3158cf5d95a2c2721e5eb9a1c3ac4461f805 (diff) |
Merge branch 'incoming'
Diffstat (limited to 'tools/test-js-optimizer-asm-last-output.js')
-rw-r--r-- | tools/test-js-optimizer-asm-last-output.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/test-js-optimizer-asm-last-output.js b/tools/test-js-optimizer-asm-last-output.js index c10cc6b0..1dacd0cd 100644 --- a/tools/test-js-optimizer-asm-last-output.js +++ b/tools/test-js-optimizer-asm-last-output.js @@ -32,4 +32,15 @@ function finall(x) { a = -0xde0b6b000000000; return 12.0e10; } +function looop() { + do { + do_it(); + } while (!condition()); + do { + do_it(); + } while (a <= b); + do { + do_it(); + } while (x()); +} |