xref: /minix3/external/bsd/llvm/dist/clang/test/Modules/compiler_builtins.m (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1f4a2713aSLionel Sambuc// RUN: rm -rf %t
2*0a6a1f1dSLionel Sambuc// RUN: %clang -fsyntax-only -fmodules -fmodules-cache-path=%t -D__need_wint_t %s -I%S/Inputs/System/usr/include -Xclang -verify
3*0a6a1f1dSLionel Sambuc// RUN: %clang -fsyntax-only -std=c99 -fmodules -fmodules-cache-path=%t -D__need_wint_t %s -I%S/Inputs/System/usr/include -Xclang -verify
4f4a2713aSLionel Sambuc// expected-no-diagnostics
5f4a2713aSLionel Sambuc
6f4a2713aSLionel Sambuc#ifdef __SSE__
7f4a2713aSLionel Sambuc@import _Builtin_intrinsics.intel.sse;
8f4a2713aSLionel Sambuc#endif
9f4a2713aSLionel Sambuc
10f4a2713aSLionel Sambuc#ifdef __AVX2__
11f4a2713aSLionel Sambuc@import _Builtin_intrinsics.intel.avx2;
12f4a2713aSLionel Sambuc#endif
13