| Index: runtime/vm/intermediate_language_mips.cc
|
| ===================================================================
|
| --- runtime/vm/intermediate_language_mips.cc (revision 25661)
|
| +++ runtime/vm/intermediate_language_mips.cc (working copy)
|
| @@ -3844,9 +3844,8 @@
|
| void AllocateObjectInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| __ TraceSimMsg("AllocateObjectInstr");
|
| __ Comment("AllocateObjectInstr");
|
| - const Class& cls = Class::ZoneHandle(constructor().Owner());
|
| - const Code& stub = Code::Handle(StubCode::GetAllocationStubForClass(cls));
|
| - const ExternalLabel label(cls.ToCString(), stub.EntryPoint());
|
| + const Code& stub = Code::Handle(StubCode::GetAllocationStubForClass(cls()));
|
| + const ExternalLabel label(cls().ToCString(), stub.EntryPoint());
|
| compiler->GenerateCall(token_pos(),
|
| &label,
|
| PcDescriptors::kOther,
|
|
|