brintos

brintos / llvm-project-archived public Read only

0
0
Text · 828 B · aa4fc73 Raw
13 lines · plain
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 %s3// RUN: %clang -### --target=aarch64 -faddrsig -mbranch-protection=standard -c -fno-integrated-as %s 2>&1 | FileCheck %s4 5/// Report a warning if we perform the link phase.6// RUN: %clang -### --target=aarch64 -faddrsig -mbranch-protection=standard %s 2>&1 | FileCheck %s7 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 %s13