aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2019-04-26 14:43:48 +0200
committerUlf Hermann <ulf.hermann@qt.io>2019-04-26 12:47:53 +0000
commit64a6677ae612f0af01cbec0b8b2a2dd625bcf85b (patch)
treeb58736553ef6d00fea37cdd61e5d25fc2670feee /src
parent6fd340c1ae0af4ba54a7d686e0fd78d5de0f53e0 (diff)
Fix compile error with qml_tracing enabled
"hasTry" doesn't exist. Change-Id: Ia6df66406e296c7623fa872ef32acc46d93b3319 Reviewed-by: Erik Verbruggen <erik.verbruggen@qt.io>
Diffstat (limited to 'src')
-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