Index: runtime/vm/intermediate_language_mips.cc |
diff --git a/runtime/vm/intermediate_language_mips.cc b/runtime/vm/intermediate_language_mips.cc |
index 6b9100bebdd948ad75822bea4bece953bf60af6f..342e267f6a438de6ea9edc5fa4bbca72e6aec53f 100644 |
--- a/runtime/vm/intermediate_language_mips.cc |
+++ b/runtime/vm/intermediate_language_mips.cc |
@@ -1922,7 +1922,7 @@ LocationSummary* StoreInstanceFieldInstr::MakeLocationSummary(Zone* zone, |
((IsPotentialUnboxedStore()) ? 3 : 0); |
LocationSummary* summary = new(zone) LocationSummary( |
zone, kNumInputs, kNumTemps, |
- ((IsUnboxedStore() && opt && is_potential_unboxed_initialization_) || |
+ ((IsUnboxedStore() && opt && is_initialization()) || |
IsPotentialUnboxedStore()) |
? LocationSummary::kCallOnSlowPath |
: LocationSummary::kNoCall); |
@@ -1978,7 +1978,7 @@ void StoreInstanceFieldInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
Register temp2 = locs()->temp(1).reg(); |
const intptr_t cid = field().UnboxedFieldCid(); |
- if (is_potential_unboxed_initialization_) { |
+ if (is_initialization()) { |
const Class* cls = NULL; |
switch (cid) { |
case kDoubleCid: |