| 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 c1b9f95bd168cfd93fb097a3c5b54055409f5aee..e0a4a2fc623aef26127ae9e57302f60f5582dd91 100644
|
| --- a/test/cctest/compiler/test-jump-threading.cc
|
| +++ b/test/cctest/compiler/test-jump-threading.cc
|
| @@ -59,13 +59,14 @@ class TestCode : public HandleAndZoneScope {
|
| Start();
|
| sequence_.AddInstruction(Instruction::New(main_zone(), kArchNop));
|
| int index = static_cast<int>(sequence_.instructions().size()) - 1;
|
| - AddGapMove(index, RegisterOperand(13), RegisterOperand(13));
|
| + AddGapMove(index, RegisterOperand(kRepWord32, 13),
|
| + RegisterOperand(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(11));
|
| + AddGapMove(index, ConstantOperand(11), RegisterOperand(kRepWord32, 11));
|
| }
|
| void Other() {
|
| Start();
|
|
|