Set the datalayout in the gold plugin.

This fixes the gold tests after r230054.

llvm-svn: 230098
This commit is contained in:
Rafael Espindola 2015-02-21 00:13:15 +00:00
parent 0b1b387441
commit 85d8509267
1 changed files with 3 additions and 0 deletions

View File

@ -693,6 +693,9 @@ getModuleForFile(LLVMContext &Context, claimed_file &F,
}
static void runLTOPasses(Module &M, TargetMachine &TM) {
if (const DataLayout *DL = TM.getDataLayout())
M.setDataLayout(DL);
legacy::PassManager passes;
passes.add(new DataLayoutPass());
passes.add(createTargetTransformInfoWrapperPass(TM.getTargetIRAnalysis()));