| Index: test/cctest/compiler/test-gap-resolver.cc
|
| diff --git a/test/cctest/compiler/test-gap-resolver.cc b/test/cctest/compiler/test-gap-resolver.cc
|
| index f22184b2241f60f2a4f3f4014f59362978ac89d6..8d0ca8b8dd666263a016a23fa3d03aec225cadcf 100644
|
| --- a/test/cctest/compiler/test-gap-resolver.cc
|
| +++ b/test/cctest/compiler/test-gap-resolver.cc
|
| @@ -116,9 +116,7 @@ class InterpreterState {
|
| InstructionOperand source = FromKey(it->first);
|
| InstructionOperand destination = FromKey(it->second);
|
| MoveOperands mo(source, destination);
|
| - PrintableMoveOperands pmo = {
|
| - RegisterConfiguration::ArchDefault(RegisterConfiguration::TURBOFAN),
|
| - &mo};
|
| + PrintableMoveOperands pmo = {RegisterConfiguration::Turbofan(), &mo};
|
| os << pmo;
|
| }
|
| return os;
|
| @@ -200,8 +198,7 @@ class ParallelMoveCreator : public HandleAndZoneScope {
|
|
|
| InstructionOperand CreateRandomOperand(bool is_source,
|
| MachineRepresentation rep) {
|
| - auto conf =
|
| - RegisterConfiguration::ArchDefault(RegisterConfiguration::TURBOFAN);
|
| + auto conf = RegisterConfiguration::Turbofan();
|
| auto GetRegisterCode = [&conf](MachineRepresentation rep, int index) {
|
| switch (rep) {
|
| case MachineRepresentation::kFloat32:
|
|
|