]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Headers/x86-intrinsics-headers.c
Vendor import of clang release_34 branch r197841 (effectively, 3.4 RC3):
[FreeBSD/FreeBSD.git] / test / Headers / x86-intrinsics-headers.c
1 // RUN: %clang_cc1 -fsyntax-only -ffreestanding %s
2 // RUN: %clang_cc1 -fsyntax-only -ffreestanding -fno-lax-vector-conversions %s
3 // RUN: %clang_cc1 -fsyntax-only -ffreestanding -x c++ %s
4
5 #if defined(i386) || defined(__x86_64__)
6
7 #ifdef __SSE4_2__
8 // nmmintrin forwards to smmintrin.
9 #include <nmmintrin.h>
10 #endif
11
12 // immintrin includes all other intel intrinsic headers.
13 #include <immintrin.h>
14
15 #endif