summaryrefslogtreecommitdiffstats
path: root/src/3rdparty
diff options
context:
space:
mode:
authorJedrzej Nowacki <jedrzej.nowacki@nokia.com>2009-08-26 12:07:25 (GMT)
committerJedrzej Nowacki <jedrzej.nowacki@nokia.com>2009-08-26 12:21:03 (GMT)
commit38d04ac09a3916ad33489e0d60e87c32f86fd117 (patch)
tree84a527d819eb1556606285c7cb0c989578608f12 /src/3rdparty
parentd0f31c800b90a57c622d5d0d41b6fc3c2f9f9b49 (diff)
downloadQt-38d04ac09a3916ad33489e0d60e87c32f86fd117.zip
Qt-38d04ac09a3916ad33489e0d60e87c32f86fd117.tar.gz
Qt-38d04ac09a3916ad33489e0d60e87c32f86fd117.tar.bz2
Fix column number in QScriptEngineAgent with JIT enabled
Column number in executed JS source code is correctly passed to debugger. Few autotest were repaired. Reviewed-by: Kent Hansen
Diffstat (limited to 'src/3rdparty')
-rw-r--r--src/3rdparty/webkit/JavaScriptCore/jit/JITOpcodes.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/3rdparty/webkit/JavaScriptCore/jit/JITOpcodes.cpp b/src/3rdparty/webkit/JavaScriptCore/jit/JITOpcodes.cpp
index b669dfa..8371229 100644
--- a/src/3rdparty/webkit/JavaScriptCore/jit/JITOpcodes.cpp
+++ b/src/3rdparty/webkit/JavaScriptCore/jit/JITOpcodes.cpp
@@ -763,6 +763,7 @@ void JIT::emit_op_debug(Instruction* currentInstruction)
stubCall.addArgument(Imm32(currentInstruction[1].u.operand));
stubCall.addArgument(Imm32(currentInstruction[2].u.operand));
stubCall.addArgument(Imm32(currentInstruction[3].u.operand));
+ stubCall.addArgument(Imm32(currentInstruction[4].u.operand));
stubCall.call();
}