| Index: src/arm64/assembler-arm64.cc
|
| diff --git a/src/arm64/assembler-arm64.cc b/src/arm64/assembler-arm64.cc
|
| index 076e143bc8120c97f74dbf11f2b3c20616ae3143..524be154c53bef81a410c3c648f456fc32f85bd3 100644
|
| --- a/src/arm64/assembler-arm64.cc
|
| +++ b/src/arm64/assembler-arm64.cc
|
| @@ -44,17 +44,8 @@ namespace internal {
|
| // CpuFeatures implementation.
|
|
|
| void CpuFeatures::ProbeImpl(bool cross_compile) {
|
| - if (cross_compile) {
|
| - // Always align csp in cross compiled code - this is safe and ensures that
|
| - // csp will always be aligned if it is enabled by probing at runtime.
|
| - if (FLAG_enable_always_align_csp) supported_ |= 1u << ALWAYS_ALIGN_CSP;
|
| - } else {
|
| - base::CPU cpu;
|
| - if (FLAG_enable_always_align_csp &&
|
| - (cpu.implementer() == base::CPU::NVIDIA || FLAG_debug_code)) {
|
| - supported_ |= 1u << ALWAYS_ALIGN_CSP;
|
| - }
|
| - }
|
| + // AArch64 has no configuration options, no further probing is required.
|
| + supported_ = 0;
|
| }
|
|
|
|
|
|
|