mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-05-14 09:56:33 +00:00

Both options do not affect the AST content that is serialized into the PCM. This commit includes the following changes: 1.) Mark `-fvisibility={}` and `-ftype-visibility={}` as benign options.That means they are no longer considered part of the module hash, which can reduce the number of module variants. 2.) Add a test to verify the generated LLVM IR is not affected by the default visibiliy mode in the module. 3.) Add a test to clang-scan-deps to ensure only one module is build, even if the above mentioned options are used. This fixes rdar://118246054.
41 lines
1.0 KiB
C++
41 lines
1.0 KiB
C++
// Test that modules with different visibility mode can be shared.
|
|
// REQUIRES: aarch64-registered-target
|
|
|
|
// RUN: rm -rf %t && mkdir %t
|
|
// RUN: split-file %s %t
|
|
|
|
// RUN: %clang_cc1 -triple arm64e-apple-macos -x c++ -fvisibility=default -fmodules-codegen -fmodules -emit-module -fmodule-name=foo %t/foo.modulemap -o %t/foo.pcm
|
|
|
|
// RUN: %clang_cc1 -emit-llvm %t/foo.pcm -o - | FileCheck %s --check-prefix=DEF
|
|
// RUN: %clang_cc1 -triple arm64e-apple-macos -x c++ -fvisibility=hidden -fmodules -fmodule-file=%t/foo.pcm -I%t -emit-llvm %t/test.cpp -o - | FileCheck %s --check-prefixes=USE
|
|
|
|
// DEF: define void @_Z2f4v()
|
|
// DEF: define weak_odr void @_Z2f3v()
|
|
|
|
// USE: define hidden void @_Z4testv()
|
|
// USE: declare void @_Z2f1v()
|
|
// USE: define internal void @_ZL2f2v()
|
|
// USE: declare void @_Z2f3v()
|
|
// USE: declare void @_Z2f4v()
|
|
|
|
|
|
//--- foo.h
|
|
void f1();
|
|
static void f2() {}
|
|
inline void f3() {}
|
|
void f4() {}
|
|
|
|
//--- test.cpp
|
|
#include "foo.h"
|
|
|
|
void test() {
|
|
f1();
|
|
f2();
|
|
f3();
|
|
f4();
|
|
}
|
|
|
|
//--- foo.modulemap
|
|
module foo { header "foo.h" }
|
|
|