| Index: src/compiler/bytecode-graph-builder.cc
|
| diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc
|
| index e1ff362d1a72925b23d29cc51461280e12d8bca5..57bda49f7d6f9760bbfd7a4783a9c00d61637f20 100644
|
| --- a/src/compiler/bytecode-graph-builder.cc
|
| +++ b/src/compiler/bytecode-graph-builder.cc
|
| @@ -554,6 +554,30 @@ void BytecodeGraphBuilder::VisitJumpIfFalseConstant(
|
| }
|
|
|
|
|
| +void BytecodeGraphBuilder::VisitJumpIfToBooleanTrue(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +void BytecodeGraphBuilder::VisitJumpIfToBooleanTrueConstant(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +void BytecodeGraphBuilder::VisitJumpIfToBooleanFalse(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| +void BytecodeGraphBuilder::VisitJumpIfToBooleanFalseConstant(
|
| + const interpreter::BytecodeArrayIterator& iterator) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| void BytecodeGraphBuilder::VisitReturn(
|
| const interpreter::BytecodeArrayIterator& iterator) {
|
| Node* control =
|
|
|