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()
43 module foo
{ header
"foo.h" }