diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2008-03-10 22:36:35 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2008-03-10 22:36:35 +0000 |
commit | d5160da577854bb398e1e89e40a757a72e0753c1 (patch) | |
tree | 2a0c554a2c6e75d7b13382660db8432613d8e82f /llvm | |
parent | 66a6271c0756b4a67a9e3346eca0beadb84d71b9 (diff) | |
download | bcm5719-llvm-d5160da577854bb398e1e89e40a757a72e0753c1.tar.gz bcm5719-llvm-d5160da577854bb398e1e89e40a757a72e0753c1.zip |
Typo: 'function' => 'alias'
llvm-svn: 48183
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/lib/Linker/LinkModules.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/lib/Linker/LinkModules.cpp b/llvm/lib/Linker/LinkModules.cpp index 8d8c0700fd8..53fce4893fd 100644 --- a/llvm/lib/Linker/LinkModules.cpp +++ b/llvm/lib/Linker/LinkModules.cpp @@ -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()); |