blob: f120bcfd98246d75337ad5ecf8cec8e5e82318d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// RUN: rm -rf %t
// RUN: %clang -fsyntax-only -fmodules -fmodules-cache-path=%t -D__need_wint_t %s -I%S/Inputs/System/usr/include -Xclang -verify
// RUN: %clang -fsyntax-only -std=c99 -fmodules -fmodules-cache-path=%t -D__need_wint_t %s -I%S/Inputs/System/usr/include -Xclang -verify
// expected-no-diagnostics
#ifdef __SSE__
@import _Builtin_intrinsics.intel.sse;
#endif
#ifdef __AVX2__
@import _Builtin_intrinsics.intel.avx2;
#endif
|