summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/webkit/JavaScriptCore/jit/JITOpcodes.cpp
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-09-02 00:19:08 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-09-02 00:19:08 (GMT)
commit8eb8ff349daa8915cf9823e5228ec2ccf2460b15 (patch)
treee9e0f2027516cbd24756021cdf8d19700dcc302a /src/3rdparty/webkit/JavaScriptCore/jit/JITOpcodes.cpp
parent7d566bc4eb5b5e47b48f28012fed24109a8dd735 (diff)
parentb52bfac9d05de835682b9c2b2e1d79e0246e708a (diff)
downloadQt-8eb8ff349daa8915cf9823e5228ec2ccf2460b15.zip
Qt-8eb8ff349daa8915cf9823e5228ec2ccf2460b15.tar.gz
Qt-8eb8ff349daa8915cf9823e5228ec2ccf2460b15.tar.bz2
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'src/3rdparty/webkit/JavaScriptCore/jit/JITOpcodes.cpp')
-rw-r--r--src/3rdparty/webkit/JavaScriptCore/jit/JITOpcodes.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/3rdparty/webkit/JavaScriptCore/jit/JITOpcodes.cpp b/src/3rdparty/webkit/JavaScriptCore/jit/JITOpcodes.cpp
index 8371229..4a33e67 100644
--- a/src/3rdparty/webkit/JavaScriptCore/jit/JITOpcodes.cpp
+++ b/src/3rdparty/webkit/JavaScriptCore/jit/JITOpcodes.cpp
@@ -684,6 +684,10 @@ void JIT::emit_op_catch(Instruction* currentInstruction)
killLastResultRegister(); // FIXME: Implicitly treat op_catch as a labeled statement, and remove this line of code.
peek(callFrameRegister, OBJECT_OFFSETOF(struct JITStackFrame, callFrame) / sizeof (void*));
emitPutVirtualRegister(currentInstruction[1].u.operand);
+#ifdef QT_BUILD_SCRIPT_LIB
+ JITStubCall stubCall(this, JITStubs::cti_op_debug_catch);
+ stubCall.call();
+#endif
}
void JIT::emit_op_jmp_scopes(Instruction* currentInstruction)