Index: src/ic.cc |
diff --git a/src/ic.cc b/src/ic.cc |
old mode 100644 |
new mode 100755 |
index 94e8773a165fbc6ae9d9a967ac0b93cb785dbf3d..30c5632eab8d2a0df610bba065f8846d0dbc7d37 |
--- a/src/ic.cc |
+++ b/src/ic.cc |
@@ -39,6 +39,7 @@ |
namespace v8 { |
namespace internal { |
+ |
danno
2013/06/25 18:40:35
Stray whitespace change?
Sigurður Ásgeirsson
2013/06/27 13:06:40
Oops, had some code there earlier, fixed.
|
#ifdef DEBUG |
char IC::TransitionMarkFromState(IC::State state) { |
switch (state) { |
@@ -144,7 +145,7 @@ IC::IC(FrameDepth depth, Isolate* isolate) : isolate_(isolate) { |
ASSERT(fp == frame->fp() && pc_address == frame->pc_address()); |
#endif |
fp_ = fp; |
- pc_address_ = pc_address; |
+ pc_address_ = StackFrame::ResolveReturnAddressLocation(pc_address); |
} |