From: Bill Wendling Date: Thu, 8 Aug 2013 23:51:04 +0000 (+0000) Subject: Revert r185882. This is causing problems with the gold linker and might be better... X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=6ba2ed53bb0b69efa4bddb317c2c859ea2bca0f5;p=oota-llvm.git Revert r185882. This is causing problems with the gold linker and might be better handled by the linker. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188029 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/lto/LTOCodeGenerator.cpp b/tools/lto/LTOCodeGenerator.cpp index 758227d61e0..3fe7af25afd 100644 --- a/tools/lto/LTOCodeGenerator.cpp +++ b/tools/lto/LTOCodeGenerator.cpp @@ -160,10 +160,8 @@ bool LTOCodeGenerator::writeMergedModules(const char *path, if (!determineTarget(errMsg)) return false; - // Run the verifier on the merged modules. - PassManager passes; - passes.add(createVerifierPass()); - passes.run(*_linker.getModule()); + // mark which symbols can not be internalized + applyScopeRestrictions(); // create output file std::string ErrInfo;