diff options
-rw-r--r-- | test/Sema/x86-intrinsics-headers.c | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/test/Sema/x86-intrinsics-headers.c b/test/Sema/x86-intrinsics-headers.c index be17696661..dd7dd5caf0 100644 --- a/test/Sema/x86-intrinsics-headers.c +++ b/test/Sema/x86-intrinsics-headers.c @@ -1,9 +1,24 @@ -// RUN: clang-cc -triple x86_64-apple-darwin10 -fsyntax-only --mcpu=core2 %s && -// RUN: clang-cc -triple x86_64-apple-darwin10 -fsyntax-only --mcpu=core2 -fno-lax-vector-conversions %s && -// RUN: clang-cc -triple x86_64-apple-darwin10 -fsyntax-only --mcpu=core2 -x c++ %s +// RUN: clang -fsyntax-only %s && +// RUN: clang -fsyntax-only -fno-lax-vector-conversions %s && +// RUN: clang -fsyntax-only -x c++ %s +#if defined(i386) || defined(__x86_64__) + +# if defined(__MMX__) #include <emmintrin.h> #include <mm_malloc.h> +# endif + +# if defined(__SSE__) +#include <xmmintrin.h> +# endif + +# if defined(__SSE3__) #include <pmmintrin.h> +# endif + +# if defined(__SSSE3__) #include <tmmintrin.h> -#include <xmmintrin.h> +# endif + +#endif |