From: Nadav Rotem Date: Mon, 15 Oct 2012 22:50:02 +0000 (+0000) Subject: LTO also needs to initialize the TargetTransform infrastructure. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=88bcf797abebb941fe9ace6de50eb7ede80d5ea7;p=oota-llvm.git LTO also needs to initialize the TargetTransform infrastructure. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165997 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/lto/LTOCodeGenerator.cpp b/tools/lto/LTOCodeGenerator.cpp index dd74ddde13d..b1c4f437ffb 100644 --- a/tools/lto/LTOCodeGenerator.cpp +++ b/tools/lto/LTOCodeGenerator.cpp @@ -371,6 +371,8 @@ bool LTOCodeGenerator::generateObjectFile(raw_ostream &out, // Add an appropriate DataLayout instance for this module... passes.add(new DataLayout(*_target->getDataLayout())); + passes.add(new TargetTransformInfo(_target->getScalarTargetTransformInfo(), + _target->getVectorTargetTransformInfo())); // Enabling internalize here would use its AllButMain variant. It // keeps only main if it exists and does nothing for libraries. Instead