diff options
Diffstat (limited to 'Source/JavaScriptCore/llint/LLIntSlowPaths.cpp')
| -rw-r--r-- | Source/JavaScriptCore/llint/LLIntSlowPaths.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp b/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp index d2d743e0a..58bf1bdeb 100644 --- a/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp +++ b/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp @@ -1601,8 +1601,9 @@ LLINT_SLOW_PATH_DECL(slow_path_debug) int debugHookID = pc[1].u.operand; int firstLine = pc[2].u.operand; int lastLine = pc[3].u.operand; - - globalData.interpreter->debug(exec, static_cast<DebugHookID>(debugHookID), firstLine, lastLine); + int column = pc[4].u.operand; + + globalData.interpreter->debug(exec, static_cast<DebugHookID>(debugHookID), firstLine, lastLine, column); LLINT_END(); } |
