aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/qml/compiler/qv4compilercontext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/compiler/qv4compilercontext.cpp b/src/qml/compiler/qv4compilercontext.cpp
index b9ab4e5173..ca2d5128f4 100644
--- a/src/qml/compiler/qv4compilercontext.cpp
+++ b/src/qml/compiler/qv4compilercontext.cpp
@@ -428,7 +428,7 @@ bool Context::canUseTracingJit() const
//### the next condition should be refined and have the IR distinguish between escaping and
// non-escaping locals
- return !hasTry && !requiresExecutionContext && !hasNestedFunctions;
+ return !requiresExecutionContext && !hasNestedFunctions;
#else
return false;
#endif