mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-04 01:42:09 +00:00
Make Module::getNamedFunction prefer non-external functions if there is more than
one function of the same name git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7274 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a84983ea72
commit
b6ede8aaa0
@ -172,10 +172,14 @@ Function *Module::getMainFunction() {
|
||||
///
|
||||
Function *Module::getNamedFunction(const std::string &Name) {
|
||||
// Loop over all of the functions, looking for the function desired
|
||||
Function *Found = 0;
|
||||
for (iterator I = begin(), E = end(); I != E; ++I)
|
||||
if (I->getName() == Name)
|
||||
return I;
|
||||
return 0; // function not found...
|
||||
if (I->isExternal())
|
||||
Found = I;
|
||||
else
|
||||
return I;
|
||||
return Found; // Non-external function not found...
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user