Index: src/compiler/js-call-reducer.cc |
diff --git a/src/compiler/js-call-reducer.cc b/src/compiler/js-call-reducer.cc |
index 2e79ad8db32d9499b44f2b47353a10684fe46e9b..3cdee83704dee7ba03770151022cdfc77a994f54 100644 |
--- a/src/compiler/js-call-reducer.cc |
+++ b/src/compiler/js-call-reducer.cc |
@@ -520,8 +520,7 @@ Reduction JSCallReducer::ReduceJSCall(Node* node) { |
// Insert a CallIC here to collect feedback for uninitialized calls. |
int const arg_count = static_cast<int>(p.arity() - 2); |
- Callable callable = |
- CodeFactory::CallICInOptimizedCode(isolate(), p.convert_mode()); |
+ Callable callable = CodeFactory::CallIC(isolate(), p.convert_mode()); |
CallDescriptor::Flags flags = CallDescriptor::kNeedsFrameState; |
CallDescriptor const* const desc = Linkage::GetStubCallDescriptor( |
isolate(), graph()->zone(), callable.descriptor(), arg_count + 1, |