
GCC ports only supports one of the options, with -mstrict-align preferred by newer ports. They reject adding -m[no-]unaligned-access to newer ports that use -m[no-]strict-align. (https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111555). We should not support aliases, either. Since the behavior has been long-time for ARM (a146a48349c965932dcf304ffb8155b25307f245), support both forms for ARM for now but remove -m[no-]unaligned-access for RISC-V/LoongArch (see also https://github.com/riscv-non-isa/riscv-c-api-doc/pull/62). While here, add TargetSpecific to ensure errors on unsupported targets (https://reviews.llvm.org/D151590) and remove unneeded CC1 options. Pull Request: https://github.com/llvm/llvm-project/pull/85350
29 lines
1.4 KiB
C
29 lines
1.4 KiB
C
// RUN: %clang -target x86_64-apple-darwin11 -mkernel -### -fsyntax-only %s 2>&1 | FileCheck --check-prefix=CHECK-X86 %s
|
|
// RUN: %clang -target x86_64-apple-darwin11 -mkernel -### -fsyntax-only -fbuiltin -fno-builtin -fcommon -fno-common %s 2>&1 | FileCheck --check-prefix=CHECK-X86 %s
|
|
|
|
// CHECK-X86: "-disable-red-zone"
|
|
// CHECK-X86: "-fno-builtin"
|
|
// CHECK-X86: "-fno-rtti"
|
|
// CHECK-X86-NOT: "-fcommon"
|
|
|
|
// RUN: %clang -target x86_64-apple-darwin11 -mkernel -### -fsyntax-only -fbuiltin -fcommon %s 2>&1 | FileCheck --check-prefix=CHECK-X86-2 %s
|
|
|
|
// CHECK-X86-2: "-disable-red-zone"
|
|
// CHECK-X86-2-NOT: "-fno-builtin"
|
|
// CHECK-X86-2: "-fno-rtti"
|
|
// CHECK-X86-2-NOT: "-fno-common"
|
|
|
|
// RUN: %clang --target=x86_64-apple-darwin11 -arch armv7 -mkernel -mstrict-align -### -fsyntax-only %s 2>&1 | FileCheck --check-prefix=CHECK-ARM %s
|
|
// RUN: %clang --target=x86_64-apple-darwin11 -arch armv7 -mkernel -mstrict-align -### -fsyntax-only -fbuiltin -fno-builtin -fcommon -fno-common %s 2>&1 | FileCheck --check-prefix=CHECK-ARM %s
|
|
|
|
// CHECK-ARM: "-target-feature" "+long-calls"
|
|
// CHECK-ARM: "-target-feature" "+strict-align"
|
|
// CHECK-ARM-NOT: "-target-feature" "+strict-align"
|
|
// CHECK-ARM: "-fno-builtin"
|
|
// CHECK-ARM: "-fno-rtti"
|
|
// CHECK-ARM-NOT: "-fcommon"
|
|
|
|
// RUN: %clang -target x86_64-apple-darwin11 \
|
|
// RUN: -Werror -fno-builtin -fno-exceptions -fno-common -fno-rtti \
|
|
// RUN: -mkernel -fsyntax-only %s
|