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

Unified Diff: test/mjsunit/asm/int32-umod.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-udiv.js ('k') | test/mjsunit/asm/int32array-constant-key.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/asm/int32-umod.js
diff --git a/test/mjsunit/asm/int32-umod.js b/test/mjsunit/asm/int32-umod.js
index 22689662500138b8cc26891d6ce80460967c5d0d..8a96aefdabb9bfdf51d6ad99ebe518401aa34c82 100644
--- a/test/mjsunit/asm/int32-umod.js
+++ b/test/mjsunit/asm/int32-umod.js
@@ -5,20 +5,20 @@
function Module(stdlib, foreign, heap) {
"use asm";
function f1(i) {
- i = i>>>0;
- return i % 3;
+ i = i | 0;
+ return (i >>> 0) % 3 | 0;
}
function f2(i) {
- i = i>>>0;
- return i % 11;
+ i = i | 0;
+ return (i >>> 0) % 11 | 0;
}
function f3(i) {
- i = i>>>0;
- return i % 1024;
+ i = i | 0;
+ return (i >>> 0) % 1024 | 0;
}
function f4(i) {
- i = i>>>0;
- return i % 3333337;
+ i = i | 0;
+ return (i >>> 0) % 3333337 | 0;
}
return { f1: f1, f2: f2, f3: f3, f4: f4 };
}
« no previous file with comments | « test/mjsunit/asm/int32-udiv.js ('k') | test/mjsunit/asm/int32array-constant-key.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698