| Index: src/compiler/js-generic-lowering.cc
|
| diff --git a/src/compiler/js-generic-lowering.cc b/src/compiler/js-generic-lowering.cc
|
| index c60af1d46713f01d9dd0c4cc89feaf413fbd82ac..8f24b63cf18e916f50eafcadc8a0fd937a2d0ce5 100644
|
| --- a/src/compiler/js-generic-lowering.cc
|
| +++ b/src/compiler/js-generic-lowering.cc
|
| @@ -309,11 +309,8 @@ void JSGenericLowering::LowerJSLoadProperty(Node* node) {
|
| const LoadPropertyParameters& p = LoadPropertyParametersOf(node->op());
|
| Callable callable =
|
| CodeFactory::KeyedLoadICInOptimizedCode(isolate(), UNINITIALIZED);
|
| - if (FLAG_vector_ics) {
|
| - node->InsertInput(zone(), 2, jsgraph()->SmiConstant(p.feedback().index()));
|
| - node->InsertInput(zone(), 3,
|
| - jsgraph()->HeapConstant(p.feedback().vector()));
|
| - }
|
| + node->InsertInput(zone(), 2, jsgraph()->SmiConstant(p.feedback().index()));
|
| + node->InsertInput(zone(), 3, jsgraph()->HeapConstant(p.feedback().vector()));
|
| ReplaceWithStubCall(node, callable, CallDescriptor::kPatchableCallSite);
|
| }
|
|
|
| @@ -326,11 +323,8 @@ void JSGenericLowering::LowerJSLoadNamed(Node* node) {
|
| UNINITIALIZED)
|
| : CodeFactory::KeyedLoadICInOptimizedCode(isolate(), UNINITIALIZED);
|
| node->InsertInput(zone(), 1, jsgraph()->HeapConstant(p.name()));
|
| - if (FLAG_vector_ics) {
|
| - node->InsertInput(zone(), 2, jsgraph()->SmiConstant(p.feedback().index()));
|
| - node->InsertInput(zone(), 3,
|
| - jsgraph()->HeapConstant(p.feedback().vector()));
|
| - }
|
| + node->InsertInput(zone(), 2, jsgraph()->SmiConstant(p.feedback().index()));
|
| + node->InsertInput(zone(), 3, jsgraph()->HeapConstant(p.feedback().vector()));
|
| ReplaceWithStubCall(node, callable, CallDescriptor::kPatchableCallSite);
|
| }
|
|
|
|
|