[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Driver / target-specific.s
blobaa4fc73812099990e0f0d19fb3841e1e938e1fab
1 /// Check that we report a warning instead of an error for target-specific compilation only options.
2 // RUN: %clang -### --target=aarch64 -faddrsig -mbranch-protection=standard -c %s 2>&1 | FileCheck %s
3 // RUN: %clang -### --target=aarch64 -faddrsig -mbranch-protection=standard -c -fno-integrated-as %s 2>&1 | FileCheck %s
5 /// Report a warning if we perform the link phase.
6 // RUN: %clang -### --target=aarch64 -faddrsig -mbranch-protection=standard %s 2>&1 | FileCheck %s
8 // CHECK: warning: argument unused during compilation: '-faddrsig'
9 // CHECK: warning: argument unused during compilation: '-mbranch-protection=standard'
11 /// assembler-with-cpp claims compile only options. Ideally we should emit a warning.
12 // RUN: %clang -### -Werror --target=aarch64 -c -faddrsig -mbranch-protection=standard -x assembler-with-cpp %s