| Index: src/compiler/bytecode-graph-builder.cc
|
| diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc
|
| index e0011259211229bfcfb3dc670d86822937de3614..8e3416a1c7a7f00d3a090036a063ffe28fea95f5 100644
|
| --- a/src/compiler/bytecode-graph-builder.cc
|
| +++ b/src/compiler/bytecode-graph-builder.cc
|
| @@ -333,6 +333,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));
|
|
|