diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-10-29 20:09:15 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-10-29 20:09:15 -0700 |
commit | f32ab820be47c968685dc5e24e27218bb0c9861c (patch) | |
tree | 54f9708bd9721f26551f8ab955461d440f2ef987 /test | |
parent | 3e8516cb75e7941da0b16443fbd4b4a298fa3644 (diff) | |
download | binaryen-f32ab820be47c968685dc5e24e27218bb0c9861c.tar.gz binaryen-f32ab820be47c968685dc5e24e27218bb0c9861c.tar.bz2 binaryen-f32ab820be47c968685dc5e24e27218bb0c9861c.zip |
fix large int constants
Diffstat (limited to 'test')
-rw-r--r-- | test/emcc_hello_world.wast | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/emcc_hello_world.wast b/test/emcc_hello_world.wast index 3303d930c..129b8e5de 100644 --- a/test/emcc_hello_world.wast +++ b/test/emcc_hello_world.wast @@ -4420,7 +4420,7 @@ (get_local $$r) (i32.const 0) ) - (f64.const 4.29496e+09) + (i32.const -2147483648) ) ) (if @@ -9503,7 +9503,7 @@ (get_local $$0) (i32.const 0) ) - (f64.const 4.29497e+09) + (i32.const -2147483648) ) ) (set_local $$4 @@ -9601,7 +9601,7 @@ (get_local $$7) (i32.const 0) ) - (f64.const 4.29497e+09) + (i32.const -2147483648) ) ) (set_local $$17 @@ -13393,7 +13393,7 @@ (get_local $$bytes) (i32.const 0) ) - (f64.const 4.29497e+09) + (i32.const -2147483648) ) ) (if |