| Index: runtime/vm/stack_frame.cc
|
| diff --git a/runtime/vm/stack_frame.cc b/runtime/vm/stack_frame.cc
|
| index a07e4147c0c3213ea313aba46101c6d969a1884e..f21ad3e4864e5b87a27f6ab0947daa9409259044 100644
|
| --- a/runtime/vm/stack_frame.cc
|
| +++ b/runtime/vm/stack_frame.cc
|
| @@ -105,9 +105,9 @@ void StackFrame::VisitObjectPointers(ObjectPointerVisitor* visitor) {
|
| // on the stack map.
|
| Array maps;
|
| maps = Array::null();
|
| - Stackmap map;
|
| + StackMap map;
|
| const uword start = Instructions::PayloadStart(code.instructions());
|
| - map = code.GetStackmap(pc() - start, &maps, &map);
|
| + map = code.GetStackMap(pc() - start, &maps, &map);
|
| if (!map.IsNull()) {
|
| #if !defined(TARGET_ARCH_DBC)
|
| RawObject** first = reinterpret_cast<RawObject**>(sp());
|
|
|