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

Unified Diff: test/mjsunit/asm/uint8array-outofbounds.js

Issue 2663243002: [asm] Fix lots of invalid asm.js tests (Closed)
Patch Set: clang-format Created 3 years, 11 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
Index: test/mjsunit/asm/uint8array-outofbounds.js
diff --git a/test/mjsunit/asm/uint8array-outofbounds.js b/test/mjsunit/asm/uint8array-outofbounds.js
index 179efa4ba810979a03a5480f2656a61139f85518..a4ab6bb4f088610c6c08c083c471af23d3239176 100644
--- a/test/mjsunit/asm/uint8array-outofbounds.js
+++ b/test/mjsunit/asm/uint8array-outofbounds.js
@@ -8,7 +8,7 @@ function Module(stdlib, foreign, heap) {
function load(i) {
i = i|0;
i = MEM8[i] | 0;
- return i;
+ return i | 0;
}
function store(i, v) {
i = i|0;

Powered by Google App Engine
This is Rietveld 408576698