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 4 5/// Report a warning if we perform the link phase. 6// RUN: %clang -### --target=aarch64 -faddrsig -mbranch-protection=standard %s 2>&1 | FileCheck %s 7 8// CHECK: warning: argument unused during compilation: '-faddrsig' 9// CHECK: warning: argument unused during compilation: '-mbranch-protection=standard' 10 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 13