[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Headers / x86-intrinsics-headers.c
blob59ca354e1160b61da9b6a1d74cd1d0c7f0a9dab4
1 // RUN: %clang_cc1 -fsyntax-only -ffreestanding %s
2 // RUN: %clang_cc1 -fsyntax-only -ffreestanding -flax-vector-conversions=none %s
3 // RUN: %clang_cc1 -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