[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git] / test / Headers / x86-intrinsics-headers.c
blobbdffddedfc7b709671a7fd17417afd3d8aa2c0d6
1 // RUN: %clang -fsyntax-only -ffreestanding %s
2 // RUN: %clang -fsyntax-only -ffreestanding -fno-lax-vector-conversions %s
3 // RUN: %clangxx -fsyntax-only -ffreestanding -x c++ %s
5 #if defined(i386) || defined(__x86_64__)
7 #ifdef __SSE4_2__
8 // nmmintrin forwards to smmintrin.
9 #include <nmmintrin.h>
10 #endif
12 // immintrin includes all other intel intrinsic headers.
13 #include <immintrin.h>
15 #endif