[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Modules / requires-gnuinlineasm.m
blobe1900b14510794863056cb95e24fe80df0c52b7f
1 // RUN: rm -rf %t
2 // RUN: %clang_cc1 -fmodules-cache-path=%t -fmodules \
3 // RUN:     -fimplicit-module-maps -F %S/Inputs/GNUAsm %s \
4 // RUN:     -I %S/Inputs/GNUAsm \
5 // RUN:     -fno-gnu-inline-asm -DNO_ASM_INLINE -verify
6 // RUN: rm -rf %t
7 // RUN: %clang_cc1 -fmodules-cache-path=%t -fmodules \
8 // RUN:     -fimplicit-module-maps -F %S/Inputs/GNUAsm %s \
9 // RUN:     -DASM_INLINE -verify
11 #ifdef NO_ASM_INLINE
12 // expected-error@NeedsGNUInlineAsm.framework/Modules/module.modulemap:4 {{module 'NeedsGNUInlineAsm.Asm' requires feature 'gnuinlineasm'}}
13 @import NeedsGNUInlineAsm.Asm; // expected-note {{module imported here}}
14 #endif
16 #ifdef ASM_INLINE
17 @import NeedsGNUInlineAsm.Asm; // expected-no-diagnostics
18 #endif