| Index: src/compiler/bytecode-graph-builder.cc
|
| diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc
|
| index fd3151f912d92a4765a3900ff0f653637a676082..6c1cf247bc3a0697d9e5c878706f1a6f679c1631 100644
|
| --- a/src/compiler/bytecode-graph-builder.cc
|
| +++ b/src/compiler/bytecode-graph-builder.cc
|
| @@ -357,6 +357,12 @@ void BytecodeGraphBuilder::VisitCallRuntime(
|
| }
|
|
|
|
|
| +void BytecodeGraphBuilder::VisitNew(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| void BytecodeGraphBuilder::BuildBinaryOp(
|
| const Operator* js_op, const interpreter::BytecodeArrayIterator& iterator) {
|
| Node* left = environment()->LookupRegister(iterator.GetRegisterOperand(0));
|
|
|