| Index: test/unittests/compiler/js-intrinsic-lowering-unittest.cc
|
| diff --git a/test/unittests/compiler/js-intrinsic-lowering-unittest.cc b/test/unittests/compiler/js-intrinsic-lowering-unittest.cc
|
| index c3f3b22d567fae1f667c08c3dc4098fc1aadf899..0c2568f566a3dd4f10ee38430e14de7887e175c6 100644
|
| --- a/test/unittests/compiler/js-intrinsic-lowering-unittest.cc
|
| +++ b/test/unittests/compiler/js-intrinsic-lowering-unittest.cc
|
| @@ -284,16 +284,16 @@ TEST_F(JSIntrinsicLoweringTest, InlineIsRegExp) {
|
|
|
|
|
| // -----------------------------------------------------------------------------
|
| -// %_IsSpecObject
|
| +// %_IsJSReceiver
|
|
|
|
|
| -TEST_F(JSIntrinsicLoweringTest, InlineIsSpecObject) {
|
| +TEST_F(JSIntrinsicLoweringTest, InlineIsJSReceiver) {
|
| Node* const input = Parameter(0);
|
| Node* const context = Parameter(1);
|
| Node* const effect = graph()->start();
|
| Node* const control = graph()->start();
|
| Reduction const r = Reduce(graph()->NewNode(
|
| - javascript()->CallRuntime(Runtime::kInlineIsSpecObject, 1), input,
|
| + javascript()->CallRuntime(Runtime::kInlineIsJSReceiver, 1), input,
|
| context, effect, control));
|
| ASSERT_TRUE(r.Changed());
|
|
|
|
|