From: Chandler Carruth Date: Sat, 5 Jan 2013 11:54:35 +0000 (+0000) Subject: Fix another place where we build the TTI pass to the new interface. X-Git-Tag: android-x86-6.0-r1~179^2~111 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=b24ce3ec45be18dda4dd5d1d848871ef680b7f72;p=android-x86%2Fexternal-llvm.git Fix another place where we build the TTI pass to the new interface. Sorry for the noise here, 'make check' doesn't build this code. =/ git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171623 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/lto/LTOCodeGenerator.cpp b/tools/lto/LTOCodeGenerator.cpp index 917d036037f..ca94698a702 100644 --- a/tools/lto/LTOCodeGenerator.cpp +++ b/tools/lto/LTOCodeGenerator.cpp @@ -372,8 +372,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())); + passes.add(createNoTTIPass(_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