diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-10-30 10:54:13 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-10-30 10:54:13 -0700 |
commit | d93ca9e91e89e6ca9dc3c974e6dfd3329a3d4f17 (patch) | |
tree | 1546e1f7f870390f51675b90f0afe485c5d991f3 /test/unit.asm.js | |
parent | 1f3825ea4fd717de015705651b9911a47751f13c (diff) | |
download | binaryen-d93ca9e91e89e6ca9dc3c974e6dfd3329a3d4f17.tar.gz binaryen-d93ca9e91e89e6ca9dc3c974e6dfd3329a3d4f17.tar.bz2 binaryen-d93ca9e91e89e6ca9dc3c974e6dfd3329a3d4f17.zip |
fix printing of large negatives
Diffstat (limited to 'test/unit.asm.js')
-rw-r--r-- | test/unit.asm.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit.asm.js b/test/unit.asm.js index fd05746d6..c8d52f3e0 100644 --- a/test/unit.asm.js +++ b/test/unit.asm.js @@ -2,7 +2,7 @@ function () { "use asm"; function big_negative() { var temp = 0.0; - temp = -2147483648; + temp = +-2147483648; temp = -2147483648.0; temp = -21474836480.0; } |