Update for r243115 which changed the DataLayout API on TargetMachine but
authorChandler Carruth <chandlerc@gmail.com>
Fri, 24 Jul 2015 17:23:09 +0000 (17:23 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Fri, 24 Jul 2015 17:23:09 +0000 (17:23 +0000)
didn't update the gold-plugin.

llvm-svn: 243121

llvm/tools/gold/gold-plugin.cpp

index 68c9d1a..18cd621 100644 (file)
@@ -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()));