Index: src/compiler/bytecode-graph-builder.cc |
diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc |
index b86142091beac574c3922e6363f023a655fe6e2b..9461b8e59c9bc033ead6803e79d6b0daf7ab42ba 100644 |
--- a/src/compiler/bytecode-graph-builder.cc |
+++ b/src/compiler/bytecode-graph-builder.cc |
@@ -1616,14 +1616,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 = |