summaryrefslogtreecommitdiffstats
path: root/src/frames.cc
diff options
context:
space:
mode:
authorLeon Clarke <leonclarke@google.com>2010-07-15 11:15:24 +0100
committerLeon Clarke <leonclarke@google.com>2010-07-15 11:15:24 +0100
commitac95265630a4e0c317a7a7201d17a57df7d9bcce (patch)
treeb9401c696a2f221a0a5ebf1bafb08c6947048d8d /src/frames.cc
parent8defd9ff6930b4e24729971a61cf7469daf119be (diff)
downloadandroid_external_v8-ac95265630a4e0c317a7a7201d17a57df7d9bcce.tar.gz
android_external_v8-ac95265630a4e0c317a7a7201d17a57df7d9bcce.tar.bz2
android_external_v8-ac95265630a4e0c317a7a7201d17a57df7d9bcce.zip
Update V8 to r5033 as required by WebKit r63173
Change-Id: I2459fd97bdc9ce9f71abc23ae7ececc691dfa2db
Diffstat (limited to 'src/frames.cc')
-rw-r--r--src/frames.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frames.cc b/src/frames.cc
index 9cf83c91..67a20d3c 100644
--- a/src/frames.cc
+++ b/src/frames.cc
@@ -542,7 +542,7 @@ void JavaScriptFrame::Print(StringStream* accumulator,
Address pc = this->pc();
if (code != NULL && code->kind() == Code::FUNCTION &&
- pc >= code->instruction_start() && pc < code->relocation_start()) {
+ pc >= code->instruction_start() && pc < code->instruction_end()) {
int source_pos = code->SourcePosition(pc);
int line = GetScriptLineNumberSafe(script, source_pos) + 1;
accumulator->Add(":%d", line);