mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-16 08:29:43 +00:00
[Orc] Fix local-linkage handling in the CompileOnDemand layer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@233895 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
57bea4161b
commit
2eb21d0245
@ -54,7 +54,7 @@ void partition(Module &M, const ModulePartitionMap &PMap) {
|
||||
if (KVPair.second.count(&Orig)) {
|
||||
copyGVInitializer(New, Orig, VMap);
|
||||
}
|
||||
if (New.getLinkage() == GlobalValue::PrivateLinkage) {
|
||||
if (New.hasLocalLinkage()) {
|
||||
New.setLinkage(GlobalValue::ExternalLinkage);
|
||||
New.setVisibility(GlobalValue::HiddenVisibility);
|
||||
}
|
||||
@ -64,7 +64,7 @@ void partition(Module &M, const ModulePartitionMap &PMap) {
|
||||
[&](Function &New, const Function &Orig, ValueToValueMapTy &VMap) {
|
||||
if (KVPair.second.count(&Orig))
|
||||
copyFunctionBody(New, Orig, VMap);
|
||||
if (New.getLinkage() == GlobalValue::InternalLinkage) {
|
||||
if (New.hasLocalLinkage()) {
|
||||
New.setLinkage(GlobalValue::ExternalLinkage);
|
||||
New.setVisibility(GlobalValue::HiddenVisibility);
|
||||
}
|
||||
|
12
test/ExecutionEngine/OrcLazy/private_linkage.ll
Normal file
12
test/ExecutionEngine/OrcLazy/private_linkage.ll
Normal file
@ -0,0 +1,12 @@
|
||||
; RUN: lli -jit-kind=orc-lazy %s
|
||||
|
||||
define private void @_ZL3foov() {
|
||||
entry:
|
||||
ret void
|
||||
}
|
||||
|
||||
define i32 @main(i32 %argc, i8** nocapture readnone %argv) {
|
||||
entry:
|
||||
tail call void @_ZL3foov()
|
||||
ret i32 0
|
||||
}
|
Loading…
Reference in New Issue
Block a user