From d93ca9e91e89e6ca9dc3c974e6dfd3329a3d4f17 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Fri, 30 Oct 2015 10:54:13 -0700 Subject: fix printing of large negatives --- test/unit.asm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/unit.asm.js') 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; } -- cgit v1.2.3