forked from OSchip/llvm-project
[Orc] Fix local-linkage handling in the CompileOnDemand layer.
llvm-svn: 233895
This commit is contained in:
parent
b965ac5dc9
commit
2f50744fe7
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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