From 5da92333c3c4fe7060bcfa4c692b54c2296dc209 Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Fri, 24 Jul 2015 17:23:09 +0000 Subject: [PATCH] Update for r243115 which changed the DataLayout API on TargetMachine but didn't update the gold-plugin. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@243121 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/gold/gold-plugin.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/gold/gold-plugin.cpp b/tools/gold/gold-plugin.cpp index 68c9d1a6f6e..18cd621317e 100644 --- a/tools/gold/gold-plugin.cpp +++ b/tools/gold/gold-plugin.cpp @@ -716,8 +716,7 @@ getModuleForFile(LLVMContext &Context, claimed_file &F, } static void runLTOPasses(Module &M, TargetMachine &TM) { - if (const DataLayout *DL = TM.getDataLayout()) - M.setDataLayout(*DL); + M.setDataLayout(TM.createDataLayout()); legacy::PassManager passes; passes.add(createTargetTransformInfoWrapperPass(TM.getTargetIRAnalysis())); -- 2.34.1