Index: runtime/vm/stack_frame.cc |
=================================================================== |
--- runtime/vm/stack_frame.cc (revision 20045) |
+++ runtime/vm/stack_frame.cc (working copy) |
@@ -61,8 +61,8 @@ |
ASSERT(visitor != NULL); |
NoGCScope no_gc; |
RawObject** start_addr = reinterpret_cast<RawObject**>(sp()); |
- RawObject** end_addr = reinterpret_cast<RawObject**>(fp()) + |
- ParsedFunction::kFirstLocalSlotIndex; |
+ RawObject** end_addr = |
+ reinterpret_cast<RawObject**>(fp()) + kFirstLocalSlotIndex; |
Code code; |
code = LookupDartCode(); |
if (!code.IsNull()) { |