diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-10-30 16:38:33 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-10-30 16:38:33 -0700 |
commit | 9b799d7164478bf0c1463ed8ac804f65704000df (patch) | |
tree | 8df68d6b4f543de17ac74b417d4dc36279dfc334 /test/unit.asm.js | |
parent | c720a74951ef0d7f472b639c3be617a551a68df7 (diff) | |
download | binaryen-9b799d7164478bf0c1463ed8ac804f65704000df.tar.gz binaryen-9b799d7164478bf0c1463ed8ac804f65704000df.tar.bz2 binaryen-9b799d7164478bf0c1463ed8ac804f65704000df.zip |
fix float constants <1
Diffstat (limited to 'test/unit.asm.js')
-rw-r--r-- | test/unit.asm.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/unit.asm.js b/test/unit.asm.js index f737a3ddc..80bab6242 100644 --- a/test/unit.asm.js +++ b/test/unit.asm.js @@ -8,6 +8,8 @@ function () { temp = +-2147483648; temp = -2147483648.0; temp = -21474836480.0; + temp = 0.039625; + temp = -0.039625; } function importedDoubles() { var temp = 0.0; |