diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-03-23 07:21:18 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-03-23 07:21:18 +0000 |
commit | b22a166796afd06c2ccea8838220dbbe3644de81 (patch) | |
tree | c545f5c40915d4440006058147e804f9accfbf19 /lib/Linker | |
parent | 12d9a9002f9fba3ea42225b8daf4f9feda52726d (diff) |
Revert patch. It broke the build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153314 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Linker')
-rw-r--r-- | lib/Linker/LinkModules.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/Linker/LinkModules.cpp b/lib/Linker/LinkModules.cpp index dca523c7ab..02905bc339 100644 --- a/lib/Linker/LinkModules.cpp +++ b/lib/Linker/LinkModules.cpp @@ -1226,7 +1226,6 @@ bool ModuleLinker::run() { } linkFunctionBody(cast<Function>(ValueMap[SF]), SF); - SF->Dematerialize(); } // Resolve all uses of aliases with aliasees. @@ -1266,8 +1265,7 @@ bool ModuleLinker::run() { // Link in function body. linkFunctionBody(DF, SF); - SF->Dematerialize(); - + // "Remove" from vector by setting the element to 0. *I = 0; |