blob: 12cd98f2e050ed5784848826c04f13cf6dbd3e61 (
plain)
1
2
3
4
5
6
7
8
9
|
// RUN: %clang -### -target powerpc-unknown-aix -mignore-xcoff-visibility -S %s 2> %t.log
// RUN: FileCheck -check-prefix=CHECK %s < %t.log
CHECK: {{.*}}clang{{.*}}" "-cc1"
CHECK: "-mignore-xcoff-visibility"
// RUN: not %clang -mignore-xcoff-visibility -target powerpc-unknown-linux %s 2>&1 | \
// RUN: FileCheck -check-prefix=ERROR %s
ERROR: unsupported option '-mignore-xcoff-visibility' for target 'powerpc-unknown-linux'
|