Skip to content

Commit

Permalink
Linker: Remove implicit ilist iterator conversion, NFC
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@250748 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
dexonsmith committed Oct 19, 2015
1 parent 36d045a commit 989a95d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Linker/LinkModules.cpp
Expand Up @@ -1219,7 +1219,7 @@ bool ModuleLinker::linkFunctionBody(Function &Dst, Function &Src) {
DI->setName(Arg.getName()); // Copy the name over.

// Add a mapping to our mapping.
ValueMap[&Arg] = DI;
ValueMap[&Arg] = &*DI;
++DI;
}

Expand Down

0 comments on commit 989a95d

Please sign in to comment.