| Index: src/arm/lithium-codegen-arm.cc
|
| diff --git a/src/arm/lithium-codegen-arm.cc b/src/arm/lithium-codegen-arm.cc
|
| index 08ece67cab2a4c5223e4e95d04134dd6c8bb889e..3671c8dda3cc1052da531b43569d785bfeb505ee 100644
|
| --- a/src/arm/lithium-codegen-arm.cc
|
| +++ b/src/arm/lithium-codegen-arm.cc
|
| @@ -172,13 +172,13 @@ bool LGapResolver::CanReach(LGapNode* a, LGapNode* b) {
|
|
|
|
|
| void LGapResolver::RegisterMove(LMoveOperands move) {
|
| - if (move.from()->IsConstantOperand()) {
|
| + if (move.source()->IsConstantOperand()) {
|
| // Constant moves should be last in the machine code. Therefore add them
|
| // first to the result set.
|
| - AddResultMove(move.from(), move.to());
|
| + AddResultMove(move.source(), move.destination());
|
| } else {
|
| - LGapNode* from = LookupNode(move.from());
|
| - LGapNode* to = LookupNode(move.to());
|
| + LGapNode* from = LookupNode(move.source());
|
| + LGapNode* to = LookupNode(move.destination());
|
| if (to->IsAssigned() && to->assigned_from() == from) {
|
| move.Eliminate();
|
| return;
|
| @@ -816,8 +816,8 @@ void LCodeGen::DoParallelMove(LParallelMove* move) {
|
| resolver_.Resolve(move->move_operands(), &marker_operand);
|
| for (int i = moves->length() - 1; i >= 0; --i) {
|
| LMoveOperands move = moves->at(i);
|
| - LOperand* from = move.from();
|
| - LOperand* to = move.to();
|
| + LOperand* from = move.source();
|
| + LOperand* to = move.destination();
|
| ASSERT(!from->IsDoubleRegister() ||
|
| !ToDoubleRegister(from).is(dbl_scratch));
|
| ASSERT(!to->IsDoubleRegister() || !ToDoubleRegister(to).is(dbl_scratch));
|
|
|