| Index: test/cctest/compiler/test-jump-threading.cc
|
| diff --git a/test/cctest/compiler/test-jump-threading.cc b/test/cctest/compiler/test-jump-threading.cc
|
| index 9fa3c9f28a6a26b5e3b3d4bacb27a91e5b0f32c9..22eeea47bd69b3eecdba7e78915815c999fce4c8 100644
|
| --- a/test/cctest/compiler/test-jump-threading.cc
|
| +++ b/test/cctest/compiler/test-jump-threading.cc
|
| @@ -59,14 +59,16 @@ class TestCode : public HandleAndZoneScope {
|
| Start();
|
| sequence_.AddInstruction(Instruction::New(main_zone(), kArchNop));
|
| int index = static_cast<int>(sequence_.instructions().size()) - 1;
|
| - AddGapMove(index, RegisterOperand(kRepWord32, 13),
|
| - RegisterOperand(kRepWord32, 13));
|
| + AddGapMove(index,
|
| + AllocatedOperand(LocationOperand::REGISTER, kRepWord32, 13),
|
| + AllocatedOperand(LocationOperand::REGISTER, kRepWord32, 13));
|
| }
|
| void NonRedundantMoves() {
|
| Start();
|
| sequence_.AddInstruction(Instruction::New(main_zone(), kArchNop));
|
| int index = static_cast<int>(sequence_.instructions().size()) - 1;
|
| - AddGapMove(index, ConstantOperand(11), RegisterOperand(kRepWord32, 11));
|
| + AddGapMove(index, ConstantOperand(11),
|
| + AllocatedOperand(LocationOperand::REGISTER, kRepWord32, 11));
|
| }
|
| void Other() {
|
| Start();
|
|
|