diff options
author | Eric Christopher <echristo@gmail.com> | 2017-03-21 22:06:18 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2017-03-21 22:06:18 +0000 |
commit | 758aad76d88000fd9cada032fb4e7afa5e27e61c (patch) | |
tree | ba3b9dbd6f72d605db42eaf1544e02d765781fac /clang/test/Driver/unsupported-faltivec.c | |
parent | 8445cbd1ca964ff490268e0854ecafaf97718639 (diff) | |
download | bcm5719-llvm-758aad76d88000fd9cada032fb4e7afa5e27e61c.tar.gz bcm5719-llvm-758aad76d88000fd9cada032fb4e7afa5e27e61c.zip |
Remove the -faltivec alias option and replace it with -maltivec everywhere.
The alias was only ever used on darwin and had some issues there,
and isn't used in practice much. Also fixes a problem with -mno-altivec
not turning off -maltivec.
Also add a diagnostic for faltivec/fno-altivec that directs users to use
maltivec options and include the altivec.h file explicitly.
llvm-svn: 298449
Diffstat (limited to 'clang/test/Driver/unsupported-faltivec.c')
-rw-r--r-- | clang/test/Driver/unsupported-faltivec.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/clang/test/Driver/unsupported-faltivec.c b/clang/test/Driver/unsupported-faltivec.c new file mode 100644 index 00000000000..f6a55bcd39f --- /dev/null +++ b/clang/test/Driver/unsupported-faltivec.c @@ -0,0 +1,10 @@ +// Tests that clang does not crash with invalid architectures in target triples. +// +// RUN: not %clang -target powerpc64le-linux-gnu -faltivec -o %t.o %s 2> %t.err +// RUN: FileCheck --input-file=%t.err --check-prefix=CHECK-NOFALTIVEC %s +// CHECK-NOFALTIVEC: error: the clang compiler does not support 'faltivec', please use -maltivec and include altivec.h explicitly +// +// RUN: not %clang -target powerpc64le-linux-gnu -fno-altivec -o %t.o %s 2> %t.err +// RUN: FileCheck --input-file=%t.err --check-prefix=CHECK-NOFNOALTIVEC %s +// CHECK-NOFNOALTIVEC: error: the clang compiler does not support 'fno-altivec', please use -mno-altivec + |