aboutsummaryrefslogtreecommitdiffstats
path: root/qv4isel_masm.cpp
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@digia.com>2012-10-17 22:55:19 +0200
committerLars Knoll <lars.knoll@digia.com>2012-10-17 23:00:39 +0200
commitccd7b9f2165486572b22f3680bdb64855b13c7ef (patch)
treece6d83f01d05480fd2c638b2ed6ecb22fc60accf /qv4isel_masm.cpp
parentaf41947939680812c259dddabf5068262595875c (diff)
Fix warning about unused opName parameter
Pass it up to generateFunctionCall :) Change-Id: Ic05854e2a7b8bea09eb652e37df43587ffe62824 Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'qv4isel_masm.cpp')
-rw-r--r--qv4isel_masm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qv4isel_masm.cpp b/qv4isel_masm.cpp
index 3ad473d293..2a03dd350a 100644
--- a/qv4isel_masm.cpp
+++ b/qv4isel_masm.cpp
@@ -676,7 +676,7 @@ void InstructionSelection::visitCJump(IR::CJump *s)
case IR::OpIn: setOp(op, opName, __qmljs_cmp_in); break;
} // switch
- generateFunctionCall(ReturnValueRegister, op, l, r, ContextRegister);
+ generateFunctionCallImp(ReturnValueRegister, opName, op, l, r, ContextRegister);
move(ReturnValueRegister, Gpr0);
Jump target = branch32(NotEqual, Gpr0, TrustedImm32(0));