1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

fix PR5186: the JIT shouldn't try to codegen available_externally

functions it should just look them up like declarations.

llvm-svn: 85077
This commit is contained in:
Chris Lattner 2009-10-25 23:06:42 +00:00
parent 6e9cf74969
commit 2f00168ed8

View File

@ -659,7 +659,7 @@ void *JIT::getPointerToFunction(Function *F) {
return Addr;
}
if (F->isDeclaration()) {
if (F->isDeclaration() || F->hasAvailableExternallyLinkage()) {
bool AbortOnFailure =
!areDlsymStubsEnabled() && !F->hasExternalWeakLinkage();
void *Addr = getPointerToNamedFunction(F->getName(), AbortOnFailure);