diff options
author | Bill Wendling <isanbard@gmail.com> | 2009-12-28 01:54:15 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2009-12-28 01:54:15 +0000 |
commit | e90c545aeb53bacdad1206bbceb72087c78a2283 (patch) | |
tree | a0ced4a4cbb6fd1aafbffd64bdd6ec2e1c12ff41 /lib/Linker | |
parent | abeca44d6387930b9ceadc51260f3d58bdc402ea (diff) |
Remove dead store.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92192 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Linker')
-rw-r--r-- | lib/Linker/LinkModules.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Linker/LinkModules.cpp b/lib/Linker/LinkModules.cpp index 8ece835bfe..1f9dc411cc 100644 --- a/lib/Linker/LinkModules.cpp +++ b/lib/Linker/LinkModules.cpp @@ -664,7 +664,6 @@ static bool LinkGlobals(Module *Dest, const Module *Src, Var->eraseFromParent(); else cast<Function>(DGV)->eraseFromParent(); - DGV = NewDGV; // If the symbol table renamed the global, but it is an externally visible // symbol, DGV must be an existing global with internal linkage. Rename. |