aboutsummaryrefslogtreecommitdiff
path: root/test/Driver/altivec.cpp
blob: cad198210a07880234af2e34598e7405fa3df9e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Check that we error when -faltivec is specified on non-ppc platforms.

// RUN: %clang -arch ppc -faltivec -fsyntax-only %s
// RUN: %clang -arch ppc64 -faltivec -fsyntax-only %s

// RUN: not %clang -arch i386 -faltivec -fsyntax-only %s
// RUN: not %clang -arch x86_64 -faltivec -fsyntax-only %s
// RUN: not %clang -arch armv6 -faltivec -fsyntax-only %s
// RUN: not %clang -arch armv7 -faltivec -fsyntax-only %s
// RUN: not %clang -arch mips -faltivec -fsyntax-only %s
// RUN: not %clang -arch mips64 -faltivec -fsyntax-only %s
// RUN: not %clang -arch sparc -faltivec -fsyntax-only %s