Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(523)

Unified Diff: test/mjsunit/wasm/asm-wasm.js

Issue 2562003002: [wasm] Remove obsolete %IsNotAsmWasmCode predicate. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/mjsunit/regress/regress-wasm-crbug-618602.js ('k') | test/mjsunit/wasm/asm-wasm-stdlib.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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));
})();
« no previous file with comments | « test/mjsunit/regress/regress-wasm-crbug-618602.js ('k') | test/mjsunit/wasm/asm-wasm-stdlib.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698