aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jit/qv4unop.cpp
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@qt.io>2017-01-09 11:35:03 +0100
committerSimon Hausmann <simon.hausmann@qt.io>2017-01-28 19:03:47 +0000
commitafd1f1f2a95deb30640d5ea6038236ce030e2f1e (patch)
tree8e0364742734fbb65fa60892621fcd1c310588ef /src/qml/jit/qv4unop.cpp
parent08e218e00bf4bc05e459c3a8e1085b9b40c21008 (diff)
Minor cleanup: Move LookupCall and RuntimeCall into Assembler
Change-Id: I31d440d6dc3f42ba33ae42af7ba42a6d045a02fb Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'src/qml/jit/qv4unop.cpp')
-rw-r--r--src/qml/jit/qv4unop.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/jit/qv4unop.cpp b/src/qml/jit/qv4unop.cpp
index 799103849b..bb52ba012b 100644
--- a/src/qml/jit/qv4unop.cpp
+++ b/src/qml/jit/qv4unop.cpp
@@ -48,14 +48,14 @@ using namespace JIT;
#define stringIfy(s) stringIfyx(s)
#define setOp(operation) \
do { \
- call = RuntimeCall(qOffsetOf(QV4::Runtime, operation)); name = "Runtime::" stringIfy(operation); \
+ call = Assembler::RuntimeCall(qOffsetOf(QV4::Runtime, operation)); name = "Runtime::" stringIfy(operation); \
needsExceptionCheck = Runtime::Method_##operation##_NeedsExceptionCheck; \
} while (0)
void Unop::generate(IR::Expr *source, IR::Expr *target)
{
bool needsExceptionCheck;
- RuntimeCall call;
+ Assembler::RuntimeCall call;
const char *name = 0;
switch (op) {
case IR::OpNot: