Delete getAliasedGlobal.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209040 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rafael Espindola
2014-05-16 22:37:03 +00:00
parent b3e18972ef
commit ad6d7f58c7
17 changed files with 19 additions and 31 deletions

View File

@ -932,7 +932,7 @@ bool AsmPrinter::doFinalization(Module &M) {
for (const auto &Alias : M.aliases()) {
MCSymbol *Name = getSymbol(&Alias);
const GlobalValue *GV = Alias.getAliasedGlobal();
const GlobalValue *GV = Alias.getAliasee();
assert(!GV->isDeclaration());
MCSymbol *Target = getSymbol(GV);