Index: src/compiler/ast-graph-builder.cc |
diff --git a/src/compiler/ast-graph-builder.cc b/src/compiler/ast-graph-builder.cc |
index 5dc28518325ddadee2249ecdc856316682d0fb5f..07df45b0871872d8c105a1da008274ec18973ef3 100644 |
--- a/src/compiler/ast-graph-builder.cc |
+++ b/src/compiler/ast-graph-builder.cc |
@@ -1410,7 +1410,7 @@ void AstGraphBuilder::VisitTryCatchStatement(TryCatchStatement* stmt) { |
try_control.EndCatch(); |
// TODO(mstarzinger): Remove bailout once everything works. |
- if (!FLAG_turbo_exceptions) SetStackOverflow(); |
+ if (!FLAG_turbo_try_catch) SetStackOverflow(); |
} |
@@ -1479,7 +1479,7 @@ void AstGraphBuilder::VisitTryFinallyStatement(TryFinallyStatement* stmt) { |
commands->ApplyDeferredCommands(token, result); |
// TODO(mstarzinger): Remove bailout once everything works. |
- if (!FLAG_turbo_exceptions) SetStackOverflow(); |
+ if (!FLAG_turbo_try_finally) SetStackOverflow(); |
} |