summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/webkit/JavaScriptCore/bytecode/CodeBlock.cpp
diff options
context:
space:
mode:
authorGunnar Sletta <gunnar@trolltech.com>2009-08-21 10:21:10 (GMT)
committerGunnar Sletta <gunnar@trolltech.com>2009-08-21 10:21:10 (GMT)
commit8feda9e2802022ae3da3d9ba0913b0130b0bdc40 (patch)
tree7e7f5c5ea315848a59367b386baf7bfd07f6e7d1 /src/3rdparty/webkit/JavaScriptCore/bytecode/CodeBlock.cpp
parentfc82b170f107d335aea6d468df6e4f5bc5db7cf5 (diff)
parent078f3ec042251af6bb9d9c194f29782c9e7b08a5 (diff)
downloadQt-8feda9e2802022ae3da3d9ba0913b0130b0bdc40.zip
Qt-8feda9e2802022ae3da3d9ba0913b0130b0bdc40.tar.gz
Qt-8feda9e2802022ae3da3d9ba0913b0130b0bdc40.tar.bz2
Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qt
Diffstat (limited to 'src/3rdparty/webkit/JavaScriptCore/bytecode/CodeBlock.cpp')
-rw-r--r--src/3rdparty/webkit/JavaScriptCore/bytecode/CodeBlock.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/3rdparty/webkit/JavaScriptCore/bytecode/CodeBlock.cpp b/src/3rdparty/webkit/JavaScriptCore/bytecode/CodeBlock.cpp
index 0cb3813..4b943c2 100644
--- a/src/3rdparty/webkit/JavaScriptCore/bytecode/CodeBlock.cpp
+++ b/src/3rdparty/webkit/JavaScriptCore/bytecode/CodeBlock.cpp
@@ -1087,7 +1087,8 @@ void CodeBlock::dump(ExecState* exec, const Vector<Instruction>::const_iterator&
int debugHookID = (++it)->u.operand;
int firstLine = (++it)->u.operand;
int lastLine = (++it)->u.operand;
- printf("[%4d] debug\t\t %s, %d, %d\n", location, debugHookName(debugHookID), firstLine, lastLine);
+ int column = (++it)->u.operand;
+ printf("[%4d] debug\t\t %s, %d, %d, %d\n", location, debugHookName(debugHookID), firstLine, lastLine, column);
break;
}
case op_profile_will_call: {