[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Modules / autolink_private_module.m
blob0c8d166a42c7d3d48153b2da164b34cf5a456e94
1 // UNSUPPORTED: target={{.*}}-zos{{.*}}, target={{.*}}-aix{{.*}}
3 // Test that autolink hints for frameworks don't use the private module name.
4 // UNSUPPORTED: target={{.*}}-zos{{.*}}, target={{.*}}-aix{{.*}}
6 // RUN: rm -rf %t && mkdir %t
7 // RUN: split-file %s %t
9 // RUN: %clang_cc1 -emit-llvm -o - -fmodules-cache-path=%t/ModuleCache -fmodules -fimplicit-module-maps -F %t/Frameworks %t/test.m | FileCheck %s
11 // CHECK:     !{!"-framework", !"Autolink"}
12 // CHECK-NOT: !{!"-framework", !"Autolink_Private"}
14 //--- test.m
15 #include <Autolink/Autolink.h>
16 #include <Autolink/Autolink_Private.h>
18 //--- Frameworks/Autolink.framework/Headers/Autolink.h
19 void public();
21 //--- Frameworks/Autolink.framework/PrivateHeaders/Autolink_Private.h
22 void private();
24 //--- Frameworks/Autolink.framework/Modules/module.modulemap
25 framework module Autolink { header "Autolink.h"}
27 //--- Frameworks/Autolink.framework/Modules/module.private.modulemap
28 framework module Autolink_Private { header "Autolink_Private.h"}