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 | d3e73556d6139bf46f897b6d62b3d4d9d3323ad4 (patch) | |
tree | b6398dcdceb1206947990f1f99d2f85fb008f94d /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 1b600181780788c525b53e3343fb17345c4b7bda (diff) | |
download | bcm5719-llvm-d3e73556d6139bf46f897b6d62b3d4d9d3323ad4.tar.gz bcm5719-llvm-d3e73556d6139bf46f897b6d62b3d4d9d3323ad4.zip |
Move TargetTransformInfo to live under the Analysis library. This no
longer would violate any dependency layering and it is in fact an
analysis. =]
llvm-svn: 171686
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 4cfb212eaf9..6c29c67808e 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -19,6 +19,7 @@ #include "llvm/ADT/SmallSet.h" #include "llvm/ADT/SmallVector.h" #include "llvm/ADT/StringExtras.h" +#include "llvm/Analysis/TargetTransformInfo.h" #include "llvm/Analysis/ValueTracking.h" #include "llvm/Assembly/Writer.h" #include "llvm/CodeGen/MachineBasicBlock.h" @@ -48,7 +49,6 @@ #include "llvm/Target/TargetOptions.h" #include "llvm/Target/TargetRegisterInfo.h" #include "llvm/Target/TargetSelectionDAGInfo.h" -#include "llvm/TargetTransformInfo.h" #include <algorithm> #include <cmath> using namespace llvm; |