brintos

brintos / llvm-project-archived public Read only

0
0
Text · 665 B · 70f5547 Raw
13 lines · c
1// RUN: %clang --target=s390x -c -### %s -mnop-mcount -mrecord-mcount 2>&1 | FileCheck %s2 3// CHECK: "-mnop-mcount"4// CHECK: "-mrecord-mcount"5 6// RUN: not %clang --target=x86_64 -c -### %s -mnop-mcount -mrecord-mcount 2>&1 | FileCheck --check-prefix=ERR1 %s7// RUN: not %clang --target=aarch64 -c -### %s -mnop-mcount -mrecord-mcount 2>&1 | FileCheck --check-prefix=ERR2 %s8 9// ERR1: error: unsupported option '-mnop-mcount' for target 'x86_64'10// ERR1: error: unsupported option '-mrecord-mcount' for target 'x86_64'11// ERR2: error: unsupported option '-mnop-mcount' for target 'aarch64'12// ERR2: error: unsupported option '-mrecord-mcount' for target 'aarch64'13