aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/compiler/qv4ssa.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/compiler/qv4ssa.cpp')
-rw-r--r--src/qml/compiler/qv4ssa.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/compiler/qv4ssa.cpp b/src/qml/compiler/qv4ssa.cpp
index 13820851e7..7054d5140c 100644
--- a/src/qml/compiler/qv4ssa.cpp
+++ b/src/qml/compiler/qv4ssa.cpp
@@ -75,7 +75,7 @@ QTextStream qout(stdout, QIODevice::WriteOnly);
void showMeTheCode(Function *function)
{
- static bool showCode = !qgetenv("SHOW_CODE").isNull();
+ static bool showCode = !qgetenv("QV4_SHOW_IR").isNull();
if (showCode) {
QVector<Stmt *> code;
QHash<Stmt *, BasicBlock *> leader;