From 64d5b282c92b3599c56ef987d6f6971611d716e6 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Mon, 9 Apr 2012 22:18:01 +0000 Subject: 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 --- tools/lto/LTOCodeGenerator.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tools/lto') diff --git a/tools/lto/LTOCodeGenerator.cpp b/tools/lto/LTOCodeGenerator.cpp index 7620bcb..28ede86 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; -- cgit v1.1