Index: src/arm/lithium-gap-resolver-arm.cc |
diff --git a/src/arm/lithium-gap-resolver-arm.cc b/src/arm/lithium-gap-resolver-arm.cc |
index 02608a695042ea06cc830b972149a8b3b2661ea4..26f60fac112895b9330d6d7b55ea08c4a2710ef8 100644 |
--- a/src/arm/lithium-gap-resolver-arm.cc |
+++ b/src/arm/lithium-gap-resolver-arm.cc |
@@ -254,7 +254,6 @@ void LGapResolver::EmitMove(int index) { |
} else { |
ASSERT(destination->IsStackSlot()); |
ASSERT(!in_cycle_); // Constant moves happen after all cycles are gone. |
- MemOperand destination_operand = cgen_->ToMemOperand(destination); |
__ mov(kSavedValueRegister, source_operand); |
__ str(kSavedValueRegister, cgen_->ToMemOperand(destination)); |
} |
@@ -265,8 +264,7 @@ void LGapResolver::EmitMove(int index) { |
__ vmov(cgen_->ToDoubleRegister(destination), source_register); |
} else { |
ASSERT(destination->IsDoubleStackSlot()); |
- MemOperand destination_operand = cgen_->ToMemOperand(destination); |
- __ vstr(source_register, destination_operand); |
+ __ vstr(source_register, cgen_->ToMemOperand(destination)); |
} |
} else if (source->IsDoubleStackSlot()) { |