| Index: src/compiler/js-generic-lowering.cc
|
| diff --git a/src/compiler/js-generic-lowering.cc b/src/compiler/js-generic-lowering.cc
|
| index c2ac2bb84259672886ecf4860c064fb064368c5d..250a9c26f647e78cbde13c59a2f56ab45fd9142e 100644
|
| --- a/src/compiler/js-generic-lowering.cc
|
| +++ b/src/compiler/js-generic-lowering.cc
|
| @@ -351,6 +351,11 @@ void JSGenericLowering::LowerJSInstanceOf(Node* node) {
|
| ReplaceWithStubCall(node, callable, flags);
|
| }
|
|
|
| +void JSGenericLowering::LowerJSOrdinaryHasInstance(Node* node) {
|
| + CallDescriptor::Flags flags = FrameStateFlagForCall(node);
|
| + Callable callable = CodeFactory::OrdinaryHasInstance(isolate());
|
| + ReplaceWithStubCall(node, callable, flags);
|
| +}
|
|
|
| void JSGenericLowering::LowerJSLoadContext(Node* node) {
|
| const ContextAccess& access = ContextAccessOf(node->op());
|
|
|