| Index: src/compiler/c-linkage.cc
|
| diff --git a/src/compiler/c-linkage.cc b/src/compiler/c-linkage.cc
|
| index 7d05a8d42973bf68149415928ede0b6fb2dd0c13..f79497a6e1c258ebe080f72ce077a75123bcd7aa 100644
|
| --- a/src/compiler/c-linkage.cc
|
| +++ b/src/compiler/c-linkage.cc
|
| @@ -191,12 +191,11 @@ CallDescriptor* Linkage::GetSimplifiedCDescriptor(
|
| const int parameter_count = static_cast<int>(msig->parameter_count());
|
|
|
| #ifdef PARAM_REGISTERS
|
| - static const Register kParamRegisters[] = {PARAM_REGISTERS};
|
| - static const int kParamRegisterCount =
|
| - static_cast<int>(arraysize(kParamRegisters));
|
| + const Register kParamRegisters[] = {PARAM_REGISTERS};
|
| + const int kParamRegisterCount = static_cast<int>(arraysize(kParamRegisters));
|
| #else
|
| - static const Register* kParamRegisters = nullptr;
|
| - static const int kParamRegisterCount = 0;
|
| + const Register* kParamRegisters = nullptr;
|
| + const int kParamRegisterCount = 0;
|
| #endif
|
|
|
| #ifdef STACK_SHADOW_WORDS
|
|
|