diff options
Diffstat (limited to 'test/wasm2js/f32_cmp.2asm.js')
-rw-r--r-- | test/wasm2js/f32_cmp.2asm.js | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/test/wasm2js/f32_cmp.2asm.js b/test/wasm2js/f32_cmp.2asm.js index 671db639d..763f90b94 100644 --- a/test/wasm2js/f32_cmp.2asm.js +++ b/test/wasm2js/f32_cmp.2asm.js @@ -21,40 +21,40 @@ function asmFunc(global, env, buffer) { var abort = env.abort; var nan = global.NaN; var infinity = global.Infinity; - function $0(x, y) { - x = Math_fround(x); - y = Math_fround(y); - return x == y | 0; + function $0($0_1, $1_1) { + $0_1 = Math_fround($0_1); + $1_1 = Math_fround($1_1); + return $0_1 == $1_1 | 0; } - function $1(x, y) { - x = Math_fround(x); - y = Math_fround(y); - return x != y | 0; + function $1($0_1, $1_1) { + $0_1 = Math_fround($0_1); + $1_1 = Math_fround($1_1); + return $0_1 != $1_1 | 0; } - function $2(x, y) { - x = Math_fround(x); - y = Math_fround(y); - return x < y | 0; + function $2($0_1, $1_1) { + $0_1 = Math_fround($0_1); + $1_1 = Math_fround($1_1); + return $0_1 < $1_1 | 0; } - function $3(x, y) { - x = Math_fround(x); - y = Math_fround(y); - return x <= y | 0; + function $3($0_1, $1_1) { + $0_1 = Math_fround($0_1); + $1_1 = Math_fround($1_1); + return $0_1 <= $1_1 | 0; } - function $4(x, y) { - x = Math_fround(x); - y = Math_fround(y); - return x > y | 0; + function $4($0_1, $1_1) { + $0_1 = Math_fround($0_1); + $1_1 = Math_fround($1_1); + return $0_1 > $1_1 | 0; } - function $5(x, y) { - x = Math_fround(x); - y = Math_fround(y); - return x >= y | 0; + function $5($0_1, $1_1) { + $0_1 = Math_fround($0_1); + $1_1 = Math_fround($1_1); + return $0_1 >= $1_1 | 0; } var FUNCTION_TABLE = []; |