Index: test/mjsunit/wasm/asm-wasm.js |
diff --git a/test/mjsunit/wasm/asm-wasm.js b/test/mjsunit/wasm/asm-wasm.js |
index dac8cbe4975bca8a812cfa7ac0139de2c0347bfe..126c66d97cee8fee882a5c22babe91ea21275550 100644 |
--- a/test/mjsunit/wasm/asm-wasm.js |
+++ b/test/mjsunit/wasm/asm-wasm.js |
@@ -111,7 +111,7 @@ function BadModule() { |
return {caller: caller}; |
} |
-assertTrue(%IsNotAsmWasmCode(BadModule)); |
+assertFalse(%IsAsmWasmCode(BadModule)); |
function TestReturnInBlock() { |
@@ -1390,7 +1390,7 @@ assertWasm(7, TestIntegerMultiplyBothWays); |
} |
print("TestBadAssignDoubleFromIntish..."); |
Module(stdlib); |
- assertTrue(%IsNotAsmWasmCode(Module)); |
+ assertFalse(%IsAsmWasmCode(Module)); |
})(); |
@@ -1406,7 +1406,7 @@ assertWasm(7, TestIntegerMultiplyBothWays); |
} |
print("TestBadAssignIntFromDouble..."); |
Module(stdlib); |
- assertTrue(%IsNotAsmWasmCode(Module)); |
+ assertFalse(%IsAsmWasmCode(Module)); |
})(); |
@@ -1421,7 +1421,7 @@ assertWasm(7, TestIntegerMultiplyBothWays); |
} |
print("TestBadMultiplyIntish..."); |
Module(stdlib); |
- assertTrue(%IsNotAsmWasmCode(Module)); |
+ assertFalse(%IsAsmWasmCode(Module)); |
})(); |
@@ -1436,7 +1436,7 @@ assertWasm(7, TestIntegerMultiplyBothWays); |
} |
print("TestBadCastFromInt..."); |
Module(stdlib); |
- assertTrue(%IsNotAsmWasmCode(Module)); |
+ assertFalse(%IsAsmWasmCode(Module)); |
})(); |
@@ -1480,7 +1480,7 @@ assertWasm(-34359738370.75, TestNegativeDouble); |
} |
Module(stdlib); |
- assertTrue(%IsNotAsmWasmCode(Module)); |
+ assertFalse(%IsAsmWasmCode(Module)); |
})(); |
@@ -1493,7 +1493,7 @@ assertWasm(-34359738370.75, TestNegativeDouble); |
} |
Module(stdlib); |
- assertTrue(%IsNotAsmWasmCode(Module)); |
+ assertFalse(%IsAsmWasmCode(Module)); |
})(); |