| Index: src/compiler/bytecode-graph-builder.cc
|
| diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc
|
| index 5fb931f5d8d0e183eea305613b127d4c011cc0fa..d2b75f355e8c6b34a3330b377615bf78d35ab3a2 100644
|
| --- a/src/compiler/bytecode-graph-builder.cc
|
| +++ b/src/compiler/bytecode-graph-builder.cc
|
| @@ -1620,14 +1620,14 @@ void BytecodeGraphBuilder::VisitJumpIfUndefinedConstant() {
|
| BuildJumpIfEqual(jsgraph()->UndefinedConstant());
|
| }
|
|
|
| +void BytecodeGraphBuilder::VisitJumpLoop() { BuildJump(); }
|
| +
|
| void BytecodeGraphBuilder::VisitStackCheck() {
|
| FrameStateBeforeAndAfter states(this);
|
| Node* node = NewNode(javascript()->StackCheck());
|
| environment()->RecordAfterState(node, &states);
|
| }
|
|
|
| -void BytecodeGraphBuilder::VisitOsrPoll() {}
|
| -
|
| void BytecodeGraphBuilder::VisitReturn() {
|
| BuildLoopExitsForFunctionExit();
|
| Node* control =
|
|
|