| Index: runtime/vm/intermediate_language_ia32.cc
|
| diff --git a/runtime/vm/intermediate_language_ia32.cc b/runtime/vm/intermediate_language_ia32.cc
|
| index 4970f71b48c58942126ab5c399cfb26cc65aff3d..ffa8decb0996b1513c944f6330b1166aeff0ece2 100644
|
| --- a/runtime/vm/intermediate_language_ia32.cc
|
| +++ b/runtime/vm/intermediate_language_ia32.cc
|
| @@ -1704,9 +1704,9 @@ void GuardFieldInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
|
|
| LocationSummary* StoreInstanceFieldInstr::MakeLocationSummary() const {
|
| const intptr_t kNumInputs = 2;
|
| - const intptr_t num_temps = 0;
|
| + const intptr_t kNumTemps = 0;
|
| LocationSummary* summary =
|
| - new LocationSummary(kNumInputs, num_temps, LocationSummary::kNoCall);
|
| + new LocationSummary(kNumInputs, kNumTemps, LocationSummary::kNoCall);
|
| summary->set_in(0, Location::RequiresRegister());
|
| summary->set_in(1, ShouldEmitStoreBarrier()
|
| ? Location::WritableRegister()
|
| @@ -4290,9 +4290,9 @@ LocationSummary* GotoInstr::MakeLocationSummary() const {
|
|
|
|
|
| void GotoInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| - // Add deoptimization descriptor for deoptimizing instructions
|
| - // that may be inserted before this instruction.
|
| if (!compiler->is_optimizing()) {
|
| + // Add deoptimization descriptor for deoptimizing instructions that may
|
| + // be inserted before this instruction.
|
| compiler->AddCurrentDescriptor(PcDescriptors::kDeopt,
|
| GetDeoptId(),
|
| 0); // No token position.
|
|
|