mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-28 07:49:01 -04:00

two identical module.modulemap are available on the include path and so should be fixed in the mingw driver include dies, when we'll have it. llvm-svn: 224515
13 lines
376 B
Objective-C
13 lines
376 B
Objective-C
// RUN: rm -rf %t
|
|
// RUN: %clang -fsyntax-only -fmodules -fmodules-cache-path=%t -D__need_wint_t %s -Xclang -verify
|
|
// RUN: %clang -fsyntax-only -std=c99 -fmodules -fmodules-cache-path=%t -D__need_wint_t %s -Xclang -verify
|
|
// expected-no-diagnostics
|
|
|
|
#ifdef __SSE__
|
|
@import _Builtin_intrinsics.intel.sse;
|
|
#endif
|
|
|
|
#ifdef __AVX2__
|
|
@import _Builtin_intrinsics.intel.avx2;
|
|
#endif
|