| Index: runtime/vm/intermediate_language_ia32.cc
|
| ===================================================================
|
| --- runtime/vm/intermediate_language_ia32.cc (revision 10615)
|
| +++ runtime/vm/intermediate_language_ia32.cc (working copy)
|
| @@ -350,7 +350,7 @@
|
| __ cmpl(temp, Immediate(ic_data.GetReceiverClassIdAt(i)));
|
| __ j(NOT_EQUAL, &next_test);
|
| const Function& target = Function::ZoneHandle(ic_data.GetTargetAt(i));
|
| - if (target.owner() == object_store->object_class()) {
|
| + if (target.Owner() == object_store->object_class()) {
|
| // Object.== is same as ===.
|
| __ Drop(2);
|
| __ cmpl(left, right);
|
| @@ -1095,7 +1095,7 @@
|
|
|
| void AllocateObjectWithBoundsCheckComp::EmitNativeCode(
|
| FlowGraphCompiler* compiler) {
|
| - const Class& cls = Class::ZoneHandle(constructor().owner());
|
| + const Class& cls = Class::ZoneHandle(constructor().Owner());
|
| Register type_arguments = locs()->in(0).reg();
|
| Register instantiator_type_arguments = locs()->in(1).reg();
|
| Register result = locs()->out().reg();
|
|
|