summaryrefslogtreecommitdiff
path: root/test/Modules/requires-gnuinlineasm.m
blob: e710b6bf8d4b500a010abf2f7c5af52f617d75ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// RUN: rm -rf %t
// RUN: %clang_cc1 -fmodules-cache-path=%t -fmodules \
// RUN:     -fimplicit-module-maps -F %S/Inputs/GNUAsm %s \
// RUN:     -I %S/Inputs/GNUAsm \
// 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
// expected-error@NeedsGNUInlineAsm.framework/module.map:4 {{module 'NeedsGNUInlineAsm.Asm' requires feature 'gnuinlineasm'}}
@import NeedsGNUInlineAsm.Asm; // expected-note {{module imported here}}
#endif

#ifdef ASM_INLINE
@import NeedsGNUInlineAsm.Asm; // expected-no-diagnostics
#endif