| Index: src/compiler/js-generic-lowering.cc
|
| diff --git a/src/compiler/js-generic-lowering.cc b/src/compiler/js-generic-lowering.cc
|
| index b0b9747239756316b57b1c30a6ae59fa0fc5e33e..22d6c86aa05482417f266e4527e1eb44488d0557 100644
|
| --- a/src/compiler/js-generic-lowering.cc
|
| +++ b/src/compiler/js-generic-lowering.cc
|
| @@ -343,6 +343,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());
|
|
|