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

Unified Diff: test/mjsunit/asm/redundancy2.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/redundancy1.js ('k') | test/mjsunit/asm/switch.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/asm/redundancy2.js
diff --git a/test/mjsunit/asm/redundancy2.js b/test/mjsunit/asm/redundancy2.js
index 95a55b533eeb4bfcd583564651ca5d87f035c645..25e9a77828490021b822c9553eb5a2bd9cb2f745 100644
--- a/test/mjsunit/asm/redundancy2.js
+++ b/test/mjsunit/asm/redundancy2.js
@@ -7,9 +7,9 @@
function module(stdlib, foreign, heap) {
"use asm";
function foo(i) {
- var j = 0;
i = i|0;
- switch (i) {
+ var j = 0;
+ switch (i | 0) {
case 0:
j = i+1|0;
break;
@@ -20,10 +20,10 @@ function module(stdlib, foreign, heap) {
j = i;
break;
}
- return j;
+ return j | 0;
}
return { foo: foo };
}
var foo = module(this, {}, new ArrayBuffer(64*1024)).foo;
-print(foo(1));
+assertEquals(2, foo(2));
« no previous file with comments | « test/mjsunit/asm/redundancy1.js ('k') | test/mjsunit/asm/switch.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698