[llvm-lto] Add a line for setting LTOCodeGenerator's CPU string from command

line.

This is needed for a test case I plan to commit later.

llvm-svn: 227532
This commit is contained in:
Akira Hatanaka 2015-01-30 01:14:28 +00:00
parent 988ce75c07
commit 23b5f6721d
1 changed files with 3 additions and 0 deletions

View File

@ -217,6 +217,9 @@ int main(int argc, char **argv) {
for (unsigned i = 0; i < KeptDSOSyms.size(); ++i)
CodeGen.addMustPreserveSymbol(KeptDSOSyms[i].c_str());
// Set cpu and attrs strings for the default target/subtarget.
CodeGen.setCpu(MCPU.c_str());
std::string attrs;
for (unsigned i = 0; i < MAttrs.size(); ++i) {
if (i > 0)