Index: src/compiler/bytecode-graph-builder.cc |
diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc |
index 1e2ab1f4adcbd2ff8effec784caa07da41ecbe08..5bb208ce94f7e5d8a2550d24cb9d0a1f4268c29b 100644 |
--- a/src/compiler/bytecode-graph-builder.cc |
+++ b/src/compiler/bytecode-graph-builder.cc |
@@ -792,8 +792,9 @@ void BytecodeGraphBuilder::VisitNew( |
interpreter::Register first_arg = iterator.GetRegisterOperand(1); |
size_t arg_count = iterator.GetCountOperand(2); |
- const Operator* call = |
- javascript()->CallConstruct(static_cast<int>(arg_count) + 2); |
+ // TODO(turbofan): Pass the feedback here. |
+ const Operator* call = javascript()->CallConstruct( |
+ static_cast<int>(arg_count) + 2, VectorSlotPair()); |
Node* value = ProcessCallNewArguments(call, callee, first_arg, arg_count + 2); |
AddEmptyFrameStateInputs(value); |
environment()->BindAccumulator(value); |