aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/compiler
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.agocs@digia.com>2013-10-01 10:14:54 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-10-01 11:55:38 +0200
commit543023c43e347c76abbd4b6c25eea29e673c19dd (patch)
treedd291d8001c4f7259aaac0dfb657b0859f36bc60 /src/qml/compiler
parent3fbe74cb0b6f01ca930bf4f22f25b4976cbe1ac3 (diff)
Fix compilation on Android with 4.8 toolchain
Change-Id: I1ce4ec8c9c671f0130c1530c772c1dd74f1fb1f4 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'src/qml/compiler')
-rw-r--r--src/qml/compiler/qv4isel_masm_p.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/qml/compiler/qv4isel_masm_p.h b/src/qml/compiler/qv4isel_masm_p.h
index c233af0b99..fd84b03b77 100644
--- a/src/qml/compiler/qv4isel_masm_p.h
+++ b/src/qml/compiler/qv4isel_masm_p.h
@@ -1207,6 +1207,8 @@ public:
done.link(this);
#else
Q_ASSERT(!"Not tested on this platform!");
+ Q_UNUSED(reg)
+ Q_UNUSED(addr)
#endif
}
@@ -1473,6 +1475,8 @@ private:
Assembler::ScratchRegister);
#else
Q_ASSERT(!"Not supported on this platform!");
+ Q_UNUSED(source)
+ Q_UNUSED(target)
#endif
} else if (target->kind == V4IR::Temp::StackSlot) {
#if CPU(X86_64) || CPU(X86)
@@ -1481,6 +1485,8 @@ private:
_as->storeDouble(Assembler::FPGpr0, _as->stackSlotPointer(target));
#else
Q_ASSERT(!"Not supported on this platform!");
+ Q_UNUSED(source)
+ Q_UNUSED(target)
#endif
} else {
Q_UNIMPLEMENTED();