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

Unified Diff: test/mjsunit/asm/float64array-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/float64array-outofbounds.js
diff --git a/test/mjsunit/asm/float64array-outofbounds.js b/test/mjsunit/asm/float64array-outofbounds.js
index 106d8e4821c3041b0c44d93c44df11dc684a778d..049421c596e5b04ded83ef2d46fb9ca1b8f491c1 100644
--- a/test/mjsunit/asm/float64array-outofbounds.js
+++ b/test/mjsunit/asm/float64array-outofbounds.js
@@ -7,8 +7,7 @@ function Module(stdlib, foreign, heap) {
var MEM64 = new stdlib.Float64Array(heap);
function load(i) {
i = i|0;
- i = +MEM64[i >> 3];
- return i;
+ return +MEM64[i >> 3];
}
function store(i, v) {
i = i|0;

Powered by Google App Engine
This is Rietveld 408576698