diff options
Diffstat (limited to 'test/wasm2js/emscripten.2asm.js.opt')
-rw-r--r-- | test/wasm2js/emscripten.2asm.js.opt | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/test/wasm2js/emscripten.2asm.js.opt b/test/wasm2js/emscripten.2asm.js.opt index 682daaf85..69251d9bb 100644 --- a/test/wasm2js/emscripten.2asm.js.opt +++ b/test/wasm2js/emscripten.2asm.js.opt @@ -83,6 +83,48 @@ function asmFunc(global, env, buffer) { if (HEAPU8[144] < 3) { bar() } + if (bools(314159) >>> 7) { + bar() + } + if (bools(314159) >> 8) { + bar() + } + if (~~getf32()) { + bar() + } + if (~~getf32()) { + bar() + } + if (~~getf64()) { + bar() + } + if (~~getf64()) { + bar() + } + if ((geti32() + geti32() | 0) + geti32()) { + bar() + } + if (geti32() + (geti32() + geti32() | 0)) { + bar() + } + if (geti32() + geti32() + (geti32() + geti32())) { + bar() + } + if (geti32() + geti32() + (geti32() + geti32()) + (geti32() + geti32() + (geti32() + geti32()))) { + bar() + } + } + + function geti32() { + return geti32(); + } + + function getf32() { + return getf32(); + } + + function getf64() { + return getf64(); } function __growWasmMemory($0) { |