From 7ef23e62b2d97fec90de6ecf1a5dc609c4921f75 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Sat, 21 Feb 2015 00:13:15 +0000 Subject: [PATCH] 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 --- tools/gold/gold-plugin.cpp | 3 +++ 1 file changed, 3 insertions(+) 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())); -- 2.34.1