forked from OSchip/llvm-project
LTO also needs to initialize the TargetTransform infrastructure.
llvm-svn: 165997
This commit is contained in:
parent
c80313b888
commit
8be2a9adba
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue