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

Unified Diff: test/mjsunit/asm/math-floor.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/math-clz32.js ('k') | test/mjsunit/asm/redundancy1.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/asm/math-floor.js
diff --git a/test/mjsunit/asm/math-floor.js b/test/mjsunit/asm/math-floor.js
index e8c3f341bbd7998849a6c10c60185cfa9d8904b6..18a5a0b2c3d55b82f107cdf6495c36b41d075ac6 100644
--- a/test/mjsunit/asm/math-floor.js
+++ b/test/mjsunit/asm/math-floor.js
@@ -9,8 +9,8 @@ function Module(stdlib) {
// f: double -> float
function f(a) {
- a = +a;
- return floor(a);
+ a = +a
+ return +floor(a);
}
return { f: f };
« no previous file with comments | « test/mjsunit/asm/math-clz32.js ('k') | test/mjsunit/asm/redundancy1.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698