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

Unified Diff: test/mjsunit/constant-fold-control-instructions.js

Issue 1479293002: Rename %_IsSpecObject to %_IsJSReceiver. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase. Created 5 years, 1 month 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/cctest/compiler/test-run-jscalls.cc ('k') | test/mjsunit/regress/regress-995.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/constant-fold-control-instructions.js
diff --git a/test/mjsunit/constant-fold-control-instructions.js b/test/mjsunit/constant-fold-control-instructions.js
index a6f5540cfd6dbc92eebf769049d1033a6c3a6e21..eb4994591dd54b56323d05eeb23f7a60e667c458 100644
--- a/test/mjsunit/constant-fold-control-instructions.js
+++ b/test/mjsunit/constant-fold-control-instructions.js
@@ -27,8 +27,8 @@ function test() {
assertTrue(%_IsFunction(function() {}));
assertFalse(%_IsFunction(null));
- assertTrue(%_IsSpecObject(new Date()));
- assertFalse(%_IsSpecObject(1));
+ assertTrue(%_IsJSReceiver(new Date()));
+ assertFalse(%_IsJSReceiver(1));
assertTrue(%_IsMinusZero(-0.0));
assertFalse(%_IsMinusZero(1));
« no previous file with comments | « test/cctest/compiler/test-run-jscalls.cc ('k') | test/mjsunit/regress/regress-995.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698