diff options
author | Janne Anttila <janne.anttila@digia.com> | 2009-09-07 13:19:27 (GMT) |
---|---|---|
committer | Janne Anttila <janne.anttila@digia.com> | 2009-09-07 13:19:27 (GMT) |
commit | 4339c8e87f66a5d42439bca574e92ceef473d433 (patch) | |
tree | 2cb4fe97bdc06dc298237af5312123c940582c6b /src/3rdparty/webkit/JavaScriptCore/jit/JITOpcodes.cpp | |
parent | 7f37724eff30c858dcec1a4a94422feaa6a9ab4f (diff) | |
parent | d724c91a0ae9ed38fd2dc33bcdd4edbe6aa69085 (diff) | |
download | Qt-4339c8e87f66a5d42439bca574e92ceef473d433.zip Qt-4339c8e87f66a5d42439bca574e92ceef473d433.tar.gz Qt-4339c8e87f66a5d42439bca574e92ceef473d433.tar.bz2 |
Merge branch '4.6' of git@scm.dev.troll.no:qt/qt into 4.6
Diffstat (limited to 'src/3rdparty/webkit/JavaScriptCore/jit/JITOpcodes.cpp')
-rw-r--r-- | src/3rdparty/webkit/JavaScriptCore/jit/JITOpcodes.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/3rdparty/webkit/JavaScriptCore/jit/JITOpcodes.cpp b/src/3rdparty/webkit/JavaScriptCore/jit/JITOpcodes.cpp index dab6682..da541c5 100644 --- a/src/3rdparty/webkit/JavaScriptCore/jit/JITOpcodes.cpp +++ b/src/3rdparty/webkit/JavaScriptCore/jit/JITOpcodes.cpp @@ -287,6 +287,7 @@ void JIT::emit_op_ret(Instruction* currentInstruction) { #ifdef QT_BUILD_SCRIPT_LIB JITStubCall stubCall(this, JITStubs::cti_op_debug_return); + stubCall.addArgument(Imm32(currentInstruction[1].u.operand)); stubCall.call(); #endif // We could JIT generate the deref, only calling out to C when the refcount hits zero. @@ -690,6 +691,7 @@ void JIT::emit_op_catch(Instruction* currentInstruction) emitPutVirtualRegister(currentInstruction[1].u.operand); #ifdef QT_BUILD_SCRIPT_LIB JITStubCall stubCall(this, JITStubs::cti_op_debug_catch); + stubCall.addArgument(Imm32(currentInstruction[1].u.operand)); stubCall.call(); #endif } |