| Index: src/compiler/js-generic-lowering.cc
|
| diff --git a/src/compiler/js-generic-lowering.cc b/src/compiler/js-generic-lowering.cc
|
| index 61485d4acc078318b83696109c59d6ee82a63fd6..86ca1cdee01f012b3710f5736f7e67982be345da 100644
|
| --- a/src/compiler/js-generic-lowering.cc
|
| +++ b/src/compiler/js-generic-lowering.cc
|
| @@ -86,6 +86,7 @@ REPLACE_STUB_CALL(LessThan)
|
| REPLACE_STUB_CALL(LessThanOrEqual)
|
| REPLACE_STUB_CALL(GreaterThan)
|
| REPLACE_STUB_CALL(GreaterThanOrEqual)
|
| +REPLACE_STUB_CALL(HasProperty)
|
| REPLACE_STUB_CALL(Equal)
|
| REPLACE_STUB_CALL(NotEqual)
|
| REPLACE_STUB_CALL(StrictEqual)
|
| @@ -328,11 +329,6 @@ void JSGenericLowering::LowerJSDeleteProperty(Node* node) {
|
| }
|
|
|
|
|
| -void JSGenericLowering::LowerJSHasProperty(Node* node) {
|
| - ReplaceWithRuntimeCall(node, Runtime::kHasProperty);
|
| -}
|
| -
|
| -
|
| void JSGenericLowering::LowerJSInstanceOf(Node* node) {
|
| CallDescriptor::Flags flags = AdjustFrameStatesForCall(node);
|
| Callable callable = CodeFactory::InstanceOf(isolate());
|
|
|