summaryrefslogtreecommitdiffstats
path: root/clang/test/Driver/mcount.c
blob: a89150cb263c115d820495d5b3fdba38d628dfd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang -target s390x -c -### %s -mnop-mcount -mrecord-mcount 2>&1 | FileCheck %s

// CHECK: "-mnop-mcount"
// CHECK: "-mrecord-mcount"

// RUN: %clang -target x86_64 -c -### %s -mnop-mcount -mrecord-mcount 2>&1 | FileCheck --check-prefix=ERR1 %s
// RUN: %clang -target aarch64 -c -### %s -mnop-mcount -mrecord-mcount 2>&1 | FileCheck --check-prefix=ERR2 %s

// ERR1: error: unsupported option '-mnop-mcount' for target 'x86_64'
// ERR1: error: unsupported option '-mrecord-mcount' for target 'x86_64'
// ERR2: error: unsupported option '-mnop-mcount' for target 'aarch64'
// ERR2: error: unsupported option '-mrecord-mcount' for target 'aarch64'
OpenPOWER on IntegriCloud