Index: src/compiler/ast-graph-builder.cc |
diff --git a/src/compiler/ast-graph-builder.cc b/src/compiler/ast-graph-builder.cc |
index fca0388327547a05bee59ccafba59e97cc2b7ad9..88dc44e3427f89b3ae00d2a1b0f670ce05c4728e 100644 |
--- a/src/compiler/ast-graph-builder.cc |
+++ b/src/compiler/ast-graph-builder.cc |
@@ -2932,7 +2932,7 @@ void AstGraphBuilder::VisitInScope(Statement* stmt, Scope* s, Node* context) { |
void AstGraphBuilder::VisitIterationBody(IterationStatement* stmt, |
LoopBuilder* loop) { |
ControlScopeForIteration scope(this, stmt, loop); |
- if (FLAG_turbo_loop_stackcheck) { |
+ if (FLAG_turbo_loop_stackcheck || !info()->shared_info()->asm_function()) { |
Node* node = NewNode(javascript()->StackCheck()); |
PrepareFrameState(node, stmt->StackCheckId()); |
} |