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

Unified Diff: test/mjsunit/asm/word32and.js

Issue 2663243002: [asm] Fix lots of invalid asm.js tests (Closed)
Patch Set: Rebase Created 3 years, 10 months 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/asm/uint8array-outofbounds.js ('k') | test/mjsunit/asm/word32ror.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/asm/word32and.js
diff --git a/test/mjsunit/asm/word32and.js b/test/mjsunit/asm/word32and.js
index 6c41f882a17799030e4bd5587be607e4d9b17c41..392dba3c849518464ce0abf126da8b43de75189b 100644
--- a/test/mjsunit/asm/word32and.js
+++ b/test/mjsunit/asm/word32and.js
@@ -8,13 +8,15 @@ var heap = new ArrayBuffer(64 * 1024);
function Word32And(rhs) {
var name = "and_0x" + Number(rhs).toString(16);
- var m = eval("function Module(stdlib, foreign, heap) {\n"
- + " \"use asm\";\n"
- + " function " + name + "(lhs) {\n"
- + " return (lhs | 0) & 0x" + Number(rhs).toString(16) + ";\n"
- + " }\n"
- + " return { f: " + name + "}\n"
- + "}; Module");
+ var m = eval(
+ 'function Module(stdlib, foreign, heap) {\n' +
+ ' "use asm";\n' +
+ ' function ' + name + '(lhs) {\n' +
+ ' lhs = lhs | 0;\n' +
+ ' return (lhs & 0x' + Number(rhs).toString(16) + ') | 0;\n' +
+ ' }\n' +
+ ' return { f: ' + name + '}\n' +
+ '}; Module');
return m(stdlib, foreign, heap).f;
}
« no previous file with comments | « test/mjsunit/asm/uint8array-outofbounds.js ('k') | test/mjsunit/asm/word32ror.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698