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

Unified Diff: test/mjsunit/asm/int32-tmod.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/int32-mul.js ('k') | test/mjsunit/asm/int32-udiv.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/asm/int32-tmod.js
diff --git a/test/mjsunit/asm/int32-tmod.js b/test/mjsunit/asm/int32-tmod.js
index 0e294d34126602124701c645b571a15d8627a738..1e7495e30233cbb32565ca46e8708738bb8000a9 100644
--- a/test/mjsunit/asm/int32-tmod.js
+++ b/test/mjsunit/asm/int32-tmod.js
@@ -6,23 +6,23 @@ function Module(stdlib, foreign, heap) {
"use asm";
function f0(i) {
i = i|0;
- return i % 2 | 0;
+ return (i | 0) % 2 | 0;
}
function f1(i) {
i = i|0;
- return i % 3 | 0;
+ return (i | 0) % 3 | 0;
}
function f2(i) {
i = i|0;
- return i % 9 | 0;
+ return (i | 0) % 9 | 0;
}
function f3(i) {
i = i|0;
- return i % 1024 | 0;
+ return (i | 0) % 1024 | 0;
}
function f4(i) {
i = i|0;
- return i % 3333339 | 0;
+ return (i | 0) % 3333339 | 0;
}
return { f0: f0, f1: f1, f2: f2, f3: f3, f4: f4 };
}
« no previous file with comments | « test/mjsunit/asm/int32-mul.js ('k') | test/mjsunit/asm/int32-udiv.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698