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

Unified Diff: test/mjsunit/asm/int32array-unaligned.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/int32array-outofbounds.js ('k') | test/mjsunit/asm/int32div.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/asm/int32array-unaligned.js
diff --git a/test/mjsunit/asm/int32array-unaligned.js b/test/mjsunit/asm/int32array-unaligned.js
index 698ec5e312e1c93a99bff1f6782dc40bec390739..6fdf5585e0eeb9926db778004ec26c285dce8c86 100644
--- a/test/mjsunit/asm/int32array-unaligned.js
+++ b/test/mjsunit/asm/int32array-unaligned.js
@@ -8,7 +8,7 @@ function Module(stdlib, foreign, heap) {
function load(i) {
i = i|0;
i = MEM32[i >> 2] | 0;
- return i;
+ return i | 0;
}
function store(i, v) {
i = i|0;
« no previous file with comments | « test/mjsunit/asm/int32array-outofbounds.js ('k') | test/mjsunit/asm/int32div.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698