From: Rafael Espindola Date: Sat, 21 Feb 2015 00:13:15 +0000 (+0000) Subject: Set the datalayout in the gold plugin. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=7ef23e62b2d97fec90de6ecf1a5dc609c4921f75;p=oota-llvm.git Set the datalayout in the gold plugin. This fixes the gold tests after r230054. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230098 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/gold/gold-plugin.cpp b/tools/gold/gold-plugin.cpp index 2b85479d1da..e654a1581f7 100644 --- a/tools/gold/gold-plugin.cpp +++ b/tools/gold/gold-plugin.cpp @@ -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()));