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.js | |
parent | caf16eda45a7abc0397fa3bf4044bda16b36a606 (diff) |
support 0x... numbers in +X to X.0 correction for asm
Diffstat (limited to 'tools/test-js-optimizer-asm-last.js')
-rw-r--r-- | tools/test-js-optimizer-asm-last.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/test-js-optimizer-asm-last.js b/tools/test-js-optimizer-asm-last.js index 2b025d28..794e90c0 100644 --- a/tools/test-js-optimizer-asm-last.js +++ b/tools/test-js-optimizer-asm-last.js @@ -22,6 +22,10 @@ function finall(x) { a = +-44.9; a = +-12.78e5; a = +-12e10; + a = +0x8000000000000000; + a = +-0x8000000000000000; + a = -+0x8000000000000000; + a = -0x8000000000000000; return +12e10; } // EMSCRIPTEN_GENERATED_FUNCTIONS: ["finall"] |