This adds support for modules that require (no-)gnu-inline-asm environment, such as the compiler builtin cpuid submodule. This is the gnu-inline-asm variant of https://reviews.llvm.org/D23871 Differential Revision: https://reviews.llvm.org/D23905 rdar://problem/26931199 llvm-svn: 280159
17 lines
583 B
Objective-C
17 lines
583 B
Objective-C
// RUN: rm -rf %t
|
|
// RUN: %clang_cc1 -fmodules-cache-path=%t -fmodules \
|
|
// RUN: -fimplicit-module-maps -F %S/Inputs/GNUAsm %s \
|
|
// RUN: -fno-gnu-inline-asm -DNO_ASM_INLINE -verify
|
|
// RUN: rm -rf %t
|
|
// RUN: %clang_cc1 -fmodules-cache-path=%t -fmodules \
|
|
// RUN: -fimplicit-module-maps -F %S/Inputs/GNUAsm %s \
|
|
// RUN: -DASM_INLINE -verify
|
|
|
|
#ifdef NO_ASM_INLINE
|
|
@import NeedsGNUInlineAsm.Asm; // expected-error{{module 'NeedsGNUInlineAsm.Asm' requires feature 'gnuinlineasm'}}
|
|
#endif
|
|
|
|
#ifdef ASM_INLINE
|
|
@import NeedsGNUInlineAsm.Asm; // expected-no-diagnostics
|
|
#endif
|