[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / Driver / mcount.c
blobb9139ab8cb132eb2bb1f5c1e61a23f4ebf777010
1 // RUN: %clang -target s390x -c -### %s -mnop-mcount -mrecord-mcount 2>&1 | FileCheck %s
3 // CHECK: "-mnop-mcount"
4 // CHECK: "-mrecord-mcount"
6 // RUN: not %clang -target x86_64 -c -### %s -mnop-mcount -mrecord-mcount 2>&1 | FileCheck --check-prefix=ERR1 %s
7 // RUN: not %clang -target aarch64 -c -### %s -mnop-mcount -mrecord-mcount 2>&1 | FileCheck --check-prefix=ERR2 %s
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'