diff options
author | Alon Zakai <alonzakai@gmail.com> | 2018-05-14 18:52:49 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-14 18:52:49 -0700 |
commit | 4615f00d6fdc314e6ca08ad3abbd42bfed60737c (patch) | |
tree | 33f4a88d1c6c9d9f25dfa50e6013dc84581e05eb /test/wasm2asm/i64-rotate.2asm.js | |
parent | 689ca6b29a135b8eaa206d790f4a01562fbe5fe4 (diff) | |
download | binaryen-4615f00d6fdc314e6ca08ad3abbd42bfed60737c.tar.gz binaryen-4615f00d6fdc314e6ca08ad3abbd42bfed60737c.tar.bz2 binaryen-4615f00d6fdc314e6ca08ad3abbd42bfed60737c.zip |
In full-printing mode, print comments for control flow endings, to help readability (#1552)
Like this:
(block $x
..
) ;; end block $x
Also fix some current breakage on master.
Diffstat (limited to 'test/wasm2asm/i64-rotate.2asm.js')
-rw-r--r-- | test/wasm2asm/i64-rotate.2asm.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/wasm2asm/i64-rotate.2asm.js b/test/wasm2asm/i64-rotate.2asm.js index c76c41e39..2d30f3f40 100644 --- a/test/wasm2asm/i64-rotate.2asm.js +++ b/test/wasm2asm/i64-rotate.2asm.js @@ -14,6 +14,9 @@ function asmFunc(global, env, buffer) { var Math_clz32 = global.Math.clz32; var Math_min = global.Math.min; var Math_max = global.Math.max; + var Math_floor = global.Math.floor; + var Math_ceil = global.Math.ceil; + var Math_sqrt = global.Math.sqrt; var i64toi32_i32$HIGH_BITS = 0; function dummy() { |