Typo: 'function' => 'alias'

llvm-svn: 48183
This commit is contained in:
Anton Korobeynikov 2008-03-10 22:36:35 +00:00
parent 66a6271c07
commit d5160da577
1 changed files with 2 additions and 3 deletions

View File

@ -717,9 +717,8 @@ static bool LinkAlias(Module *Dest, const Module *Src,
assert(NewGA && "No alias was created in destination module!");
// If the symbol table renamed the function, but it is an externally
// visible symbol, DGV must be an existing function with internal
// linkage. Rename it.
// If the symbol table renamed the alias, but it is an externally visible
// symbol, DGV must be an global value with internal linkage. Rename it.
if (NewGA->getName() != SGA->getName() &&
!NewGA->hasInternalLinkage())
ForceRenaming(NewGA, SGA->getName());