mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-12 03:32:10 +00:00
Fix a typeo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15510 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d2da229ce3
commit
82b5b219dd
@ -605,7 +605,7 @@ static bool LinkFunctionProtos(Module *Dest, const Module *Src,
|
||||
// visible symbol, DF must be an existing function with internal linkage.
|
||||
// Rename it.
|
||||
if (NewDF->getName() != SF->getName() && !NewDF->hasInternalLinkage())
|
||||
ForceRenaming(DF, SF->getName());
|
||||
ForceRenaming(NewDF, SF->getName());
|
||||
|
||||
// ... and remember this mapping...
|
||||
ValueMap.insert(std::make_pair(SF, NewDF));
|
||||
|
@ -605,7 +605,7 @@ static bool LinkFunctionProtos(Module *Dest, const Module *Src,
|
||||
// visible symbol, DF must be an existing function with internal linkage.
|
||||
// Rename it.
|
||||
if (NewDF->getName() != SF->getName() && !NewDF->hasInternalLinkage())
|
||||
ForceRenaming(DF, SF->getName());
|
||||
ForceRenaming(NewDF, SF->getName());
|
||||
|
||||
// ... and remember this mapping...
|
||||
ValueMap.insert(std::make_pair(SF, NewDF));
|
||||
|
Loading…
x
Reference in New Issue
Block a user