aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/compiler/qv4isel_masm.cpp
diff options
context:
space:
mode:
authorErik Verbruggen <erik.verbruggen@me.com>2013-10-01 14:53:05 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-03 07:07:14 +0200
commitb5198ce221c67c9772b3a205fd3823a9c516a9ec (patch)
treed37deb8eff65bdcccc693ecf515577d4e265f223 /src/qml/compiler/qv4isel_masm.cpp
parentf4b38392898dfac6be8fa6a7874138a5eb49a32c (diff)
V4 JIT: implement convertUInt32ToDouble on ARMv7.
Change-Id: I11caf07a8776bb2c6527639f22d47103f4ca1cef Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/qml/compiler/qv4isel_masm.cpp')
-rw-r--r--src/qml/compiler/qv4isel_masm.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/qml/compiler/qv4isel_masm.cpp b/src/qml/compiler/qv4isel_masm.cpp
index 5ee539648e..020bdb3777 100644
--- a/src/qml/compiler/qv4isel_masm.cpp
+++ b/src/qml/compiler/qv4isel_masm.cpp
@@ -1935,12 +1935,8 @@ Assembler::Jump InstructionSelection::genTryDoubleConversion(V4IR::Expr *src,
dest);
return Assembler::Jump();
case V4IR::UInt32Type:
-#if CPU(X86_64) || CPU(X86)
_as->convertUInt32ToDouble(_as->toUInt32Register(src, Assembler::ScratchRegister),
dest, Assembler::ReturnValueRegister);
-#else
- Q_ASSERT(!"Not supported on this platform!");
-#endif
return Assembler::Jump();
case V4IR::BoolType:
// TODO?