diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-01-19 14:32:14 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-01-19 14:32:14 -0800 |
commit | 7654dfe43471b752c80f6cb2976ace95d60a1319 (patch) | |
tree | a5b59933fe6495f708e329683ed24dc8c28485eb /tools/test-js-optimizer-asm-last-output.js | |
parent | caf16eda45a7abc0397fa3bf4044bda16b36a606 (diff) |
support 0x... numbers in +X to X.0 correction for asm
Diffstat (limited to 'tools/test-js-optimizer-asm-last-output.js')
-rw-r--r-- | tools/test-js-optimizer-asm-last-output.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/test-js-optimizer-asm-last-output.js b/tools/test-js-optimizer-asm-last-output.js index 5a87f3c4..405cd929 100644 --- a/tools/test-js-optimizer-asm-last-output.js +++ b/tools/test-js-optimizer-asm-last-output.js @@ -22,6 +22,10 @@ function finall(x) { a = -44.9; a = -1278.0e3; a = -12.0e10; + a = 9223372036854776000.0; + a = -9223372036854776000.0; + a = -9223372036854776000.0; + a = -0x8000000000000000; return 12.0e10; } |