[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git] / clang / test / Modules / visibility.cpp
blobc912a4195deb9d44b2fb20698d74cacfab1aa91e
1 // Test that modules with different visibility mode can be shared.
2 // REQUIRES: aarch64-registered-target
4 // RUN: rm -rf %t && mkdir %t
5 // RUN: split-file %s %t
7 // RUN: %clang_cc1 -triple arm64e-apple-macos -x c++ -fvisibility=default -fmodules -emit-module -fmodule-name=foo %t/foo.modulemap -o %t/foo.default.pcm
8 // RUN: %clang_cc1 -triple arm64e-apple-macos -x c++ -fvisibility=hidden -fmodules -emit-module -fmodule-name=foo %t/foo.modulemap -o %t/foo.hidden.pcm
10 // RUN: %clang_cc1 -triple arm64e-apple-macos -x c++ -fvisibility=default -fmodules -fmodule-file=%t/foo.default.pcm -I%t -emit-llvm %t/test.cpp -o - | FileCheck %s --check-prefixes=DEFAULT,BOTH
11 // RUN: %clang_cc1 -triple arm64e-apple-macos -x c++ -fvisibility=default -fmodules -fmodule-file=%t/foo.hidden.pcm -I%t -emit-llvm %t/test.cpp -o - | FileCheck %s --check-prefixes=DEFAULT,BOTH
13 // RUN: %clang_cc1 -triple arm64e-apple-macos -x c++ -fvisibility=hidden -fmodules -fmodule-file=%t/foo.default.pcm -I%t -emit-llvm %t/test.cpp -o - | FileCheck %s --check-prefixes=HIDDEN,BOTH
14 // RUN: %clang_cc1 -triple arm64e-apple-macos -x c++ -fvisibility=hidden -fmodules -fmodule-file=%t/foo.hidden.pcm -I%t -emit-llvm %t/test.cpp -o - | FileCheck %s --check-prefixes=HIDDEN,BOTH
16 // DEFAULT: define void @_Z2f4v()
17 // HIDDEN: define hidden void @_Z2f4v()
18 // DEFAULT: define void @_Z4testv()
19 // HIDDEN: define hidden void @_Z4testv()
20 // BOTH: declare void @_Z2f1v()
21 // BOTH: define internal void @_ZL2f2v()
22 // DEFAULT: define linkonce_odr void @_Z2f3v()
23 // HIDDEN: define linkonce_odr hidden void @_Z2f3v()
26 //--- foo.h
27 void f1();
28 static void f2() {}
29 inline void f3() {}
30 void f4() {}
32 //--- test.cpp
33 #include "foo.h"
35 void test() {
36 f1();
37 f2();
38 f3();
39 f4();
42 //--- foo.modulemap
43 module foo { header "foo.h" }