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

Unified Diff: test/mjsunit/asm/math-ceil.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/math-ceil.js
diff --git a/test/mjsunit/asm/math-ceil.js b/test/mjsunit/asm/math-ceil.js
index edb94937bac42cd56cf653a2b563e7528759c70f..d458eba057cece6471854646b013bf337e66fcc4 100644
--- a/test/mjsunit/asm/math-ceil.js
+++ b/test/mjsunit/asm/math-ceil.js
@@ -10,7 +10,7 @@ function Module(stdlib) {
// f: double -> float
function f(a) {
a = +a;
- return ceil(a);
+ return +ceil(a);
}
return { f: f };

Powered by Google App Engine
This is Rietveld 408576698