Index: src/code-stub-assembler.cc |
diff --git a/src/code-stub-assembler.cc b/src/code-stub-assembler.cc |
index 53b9835ab46eb2334bbb526d346c290eeb5a05d5..8916a06db9555e6381a765f1208528a327f2a43d 100644 |
--- a/src/code-stub-assembler.cc |
+++ b/src/code-stub-assembler.cc |
@@ -7923,8 +7923,8 @@ Node* CodeStubAssembler::InstanceOf(Node* object, Node* callable, |
GotoIfNot(IsJSReceiver(callable), &if_notreceiver); |
// Load the @@hasInstance property from {callable}. |
- Node* inst_of_handler = CallStub(CodeFactory::GetProperty(isolate()), context, |
- callable, HasInstanceSymbolConstant()); |
+ Node* inst_of_handler = |
+ GetProperty(context, callable, HasInstanceSymbolConstant()); |
// Optimize for the likely case where {inst_of_handler} is the builtin |
// Function.prototype[@@hasInstance] method, and emit a direct call in |