aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/compiler/qv4instr_moth.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2017-08-05 18:20:26 +0200
committerLars Knoll <lars.knoll@qt.io>2017-08-08 18:58:48 +0000
commit22eb1fc012ab1e9b96de293290c78087fe958a8a (patch)
treeb0d245ce36c45f68a06f3923b83725bbc762b076 /src/qml/compiler/qv4instr_moth.cpp
parent99783cd6dec326058b8db345145b1f8f71cfb6f0 (diff)
Move the function to call into the accumulator
Change-Id: Ie84f3f029111b17d62912c653edc35b4cc2de026 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/qml/compiler/qv4instr_moth.cpp')
-rw-r--r--src/qml/compiler/qv4instr_moth.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/compiler/qv4instr_moth.cpp b/src/qml/compiler/qv4instr_moth.cpp
index c810e17925..dc89436a02 100644
--- a/src/qml/compiler/qv4instr_moth.cpp
+++ b/src/qml/compiler/qv4instr_moth.cpp
@@ -242,7 +242,7 @@ void dumpBytecode(const char *code, int len, int nFormals)
MOTH_END_INSTR(LoadIdObject)
MOTH_BEGIN_INSTR(CallValue)
- d << instr.dest.dump(nFormals) << "(" << instr.callData.dump(nFormals) << ")";
+ d << "(" << instr.callData.dump(nFormals) << ")";
MOTH_END_INSTR(CallValue)
MOTH_BEGIN_INSTR(CallProperty)