| Index: src/arm64/macro-assembler-arm64.cc
|
| diff --git a/src/arm64/macro-assembler-arm64.cc b/src/arm64/macro-assembler-arm64.cc
|
| index e0a2190f2825a34af71bccaca1ebbc5af02a2d2d..f2ca92bd785596cfc300d2e0039a63b6b210e66c 100644
|
| --- a/src/arm64/macro-assembler-arm64.cc
|
| +++ b/src/arm64/macro-assembler-arm64.cc
|
| @@ -1308,7 +1308,7 @@ void MacroAssembler::AssertStackConsistency() {
|
| // Avoid emitting code when !use_real_abort() since non-real aborts cause too
|
| // much code to be generated.
|
| if (emit_debug_code() && use_real_aborts()) {
|
| - if (csp.Is(StackPointer()) || CpuFeatures::IsSupported(ALWAYS_ALIGN_CSP)) {
|
| + if (csp.Is(StackPointer())) {
|
| // Always check the alignment of csp if ALWAYS_ALIGN_CSP is true. We
|
| // can't check the alignment of csp without using a scratch register (or
|
| // clobbering the flags), but the processor (or simulator) will abort if
|
|
|