From: Bill Wendling Date: Mon, 9 Apr 2012 22:18:01 +0000 (+0000) Subject: Apply the scope restrictions after parsing the command line options. There may be... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=64d5b282c92b3599c56ef987d6f6971611d716e6;p=oota-llvm.git Apply the scope restrictions after parsing the command line options. There may be some which are used in that function. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@154348 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/lto/LTOCodeGenerator.cpp b/tools/lto/LTOCodeGenerator.cpp index 7620bcb1c18..28ede86f212 100644 --- a/tools/lto/LTOCodeGenerator.cpp +++ b/tools/lto/LTOCodeGenerator.cpp @@ -347,9 +347,6 @@ bool LTOCodeGenerator::generateObjectFile(raw_ostream &out, if ( this->determineTarget(errMsg) ) return true; - // mark which symbols can not be internalized - this->applyScopeRestrictions(); - Module* mergedModule = _linker.getModule(); // if options were requested, set them @@ -357,6 +354,9 @@ bool LTOCodeGenerator::generateObjectFile(raw_ostream &out, cl::ParseCommandLineOptions(_codegenOptions.size(), const_cast(&_codegenOptions[0])); + // mark which symbols can not be internalized + this->applyScopeRestrictions(); + // Instantiate the pass manager to organize the passes. PassManager passes;