| Index: runtime/vm/compiler.cc
|
| ===================================================================
|
| --- runtime/vm/compiler.cc (revision 37955)
|
| +++ runtime/vm/compiler.cc (working copy)
|
| @@ -639,9 +639,9 @@
|
|
|
| OS::Print("Pointer offsets for function: {\n");
|
| // Pointer offsets are stored in descending order.
|
| + Object& obj = Object::Handle();
|
| for (intptr_t i = code.pointer_offsets_length() - 1; i >= 0; i--) {
|
| const uword addr = code.GetPointerOffsetAt(i) + code.EntryPoint();
|
| - Object& obj = Object::Handle();
|
| obj = *reinterpret_cast<RawObject**>(addr);
|
| OS::Print(" %d : %#" Px " '%s'\n",
|
| code.GetPointerOffsetAt(i), addr, obj.ToCString());
|
|
|