Chromium Code Reviews| Index: src/frames.cc |
| diff --git a/src/frames.cc b/src/frames.cc |
| index 167277f799617974fdd08c84e7fc71a0f5005610..61fcdde0e7f5c8068747544dd1e2f2effc7210cd 100644 |
| --- a/src/frames.cc |
| +++ b/src/frames.cc |
| @@ -1401,6 +1401,11 @@ Code* StubFailureTrampolineFrame::unchecked_code() const { |
| return trampoline; |
| } |
| + CallStubFailureTrampolineStub().FindCodeInCache(&trampoline, isolate()); |
| + if (trampoline->contains(pc())) { |
| + return trampoline; |
| + } |
| + |
| UNREACHABLE(); |
| return NULL; |
| } |