1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-21 03:32:29 +00:00

Inline function into its one caller.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153598 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2012-03-28 20:48:49 +00:00
parent 663ee20cc4
commit 61476d6f90

@ -662,12 +662,6 @@ static bool isDeclaration(const GlobalValue &V) {
return V.isDeclaration();
}
/// isAliasToDeclaration - Return 'true' if the global value is an alias to a
/// declaration.
static bool isAliasToDeclaration(const GlobalAlias &V) {
return isDeclaration(*V.getAliasedGlobal());
}
/// ParseSymbols - Parse the symbols from the module and model-level ASM and add
/// them to either the defined or undefined lists.
bool LTOModule::ParseSymbols(std::string &errMsg) {
@ -695,7 +689,8 @@ bool LTOModule::ParseSymbols(std::string &errMsg) {
// add aliases
for (Module::alias_iterator i = _module->alias_begin(),
e = _module->alias_end(); i != e; ++i) {
if (isAliasToDeclaration(*i))
if (isDeclaration(*i->getAliasedGlobal()))
// Is an alias to a declaration.
addPotentialUndefinedSymbol(i);
else
addDefinedDataSymbol(i);