aboutsummaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/v4/qdeclarativev4compiler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/declarative/qml/v4/qdeclarativev4compiler.cpp')
-rw-r--r--src/declarative/qml/v4/qdeclarativev4compiler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/declarative/qml/v4/qdeclarativev4compiler.cpp b/src/declarative/qml/v4/qdeclarativev4compiler.cpp
index a7eecce0c9..e67a3821d7 100644
--- a/src/declarative/qml/v4/qdeclarativev4compiler.cpp
+++ b/src/declarative/qml/v4/qdeclarativev4compiler.cpp
@@ -404,15 +404,15 @@ void QDeclarativeV4CompilerPrivate::visitUnop(IR::Unop *e)
break;
case IR::OpIfTrue:
+ convertToBool(e->expr, src);
if (src != currentReg) {
i.move_reg_reg(currentReg, src);
gen(i);
- } else {
- // nothing to do
}
break;
case IR::OpNot:
+ convertToBool(e->expr, src);
i.unary_not(currentReg, src);
gen(i);
break;