diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2013-01-07 03:08:10 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2013-01-07 03:08:10 +0000 |
commit | be04929f7fd76a921540e9901f24563e51dc1219 (patch) | |
tree | bf84cce2e15339ad568b2870f37236080ccdc0d6 /lib/Target/ARM/ARMTargetTransformInfo.cpp | |
parent | 26b8aab72e6895d7851c0b4568a54920162dd736 (diff) |
Move TargetTransformInfo to live under the Analysis library. This no
longer would violate any dependency layering and it is in fact an
analysis. =]
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171686 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMTargetTransformInfo.cpp')
-rw-r--r-- | lib/Target/ARM/ARMTargetTransformInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMTargetTransformInfo.cpp b/lib/Target/ARM/ARMTargetTransformInfo.cpp index 7a830dd731..03a23be0a6 100644 --- a/lib/Target/ARM/ARMTargetTransformInfo.cpp +++ b/lib/Target/ARM/ARMTargetTransformInfo.cpp @@ -17,9 +17,9 @@ #define DEBUG_TYPE "armtti" #include "ARM.h" #include "ARMTargetMachine.h" +#include "llvm/Analysis/TargetTransformInfo.h" #include "llvm/Support/Debug.h" #include "llvm/Target/TargetLowering.h" -#include "llvm/TargetTransformInfo.h" using namespace llvm; // Declare the pass initialization routine locally as target-specific passes |