| Index: test/unittests/compiler/instruction-sequence-unittest.cc
|
| diff --git a/test/unittests/compiler/instruction-sequence-unittest.cc b/test/unittests/compiler/instruction-sequence-unittest.cc
|
| index 0a17100f25de0e87c38ee9cae98c0d8fb00e2e61..e61f690b4ef29adbb8bd2d0f6306fe9582be7020 100644
|
| --- a/test/unittests/compiler/instruction-sequence-unittest.cc
|
| +++ b/test/unittests/compiler/instruction-sequence-unittest.cc
|
| @@ -22,11 +22,8 @@ static char register_names_[10 * (RegisterConfiguration::kMaxGeneralRegisters +
|
| namespace {
|
| static int allocatable_codes[InstructionSequenceTest::kDefaultNRegs] = {
|
| 0, 1, 2, 3, 4, 5, 6, 7};
|
| -static int allocatable_double_codes[InstructionSequenceTest::kDefaultNRegs] = {
|
| - 0, 1, 2, 3, 4, 5, 6, 7};
|
| }
|
|
|
| -
|
| static void InitializeRegisterNames() {
|
| char* loc = register_names_;
|
| for (int i = 0; i < RegisterConfiguration::kMaxGeneralRegisters; ++i) {
|
| @@ -92,8 +89,7 @@ RegisterConfiguration* InstructionSequenceTest::config() {
|
| if (!config_) {
|
| config_.reset(new RegisterConfiguration(
|
| num_general_registers_, num_double_registers_, num_general_registers_,
|
| - num_double_registers_, num_double_registers_, allocatable_codes,
|
| - allocatable_double_codes,
|
| + num_double_registers_, allocatable_codes, allocatable_codes,
|
| kSimpleFPAliasing ? RegisterConfiguration::OVERLAP
|
| : RegisterConfiguration::COMBINE,
|
| general_register_names_,
|
|
|