diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2016-01-27 16:32:26 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2016-01-27 16:32:26 +0000 |
commit | f9172fd4ac4c86f5f04220d7d748eace96fd1a95 (patch) | |
tree | 9681499dc21160c4eb78d6dae8e89c9e06470389 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | c67cf31f5c549375c7dcbb2e331ecf93906f7e55 (diff) | |
download | bcm5719-llvm-f9172fd4ac4c86f5f04220d7d748eace96fd1a95.tar.gz bcm5719-llvm-f9172fd4ac4c86f5f04220d7d748eace96fd1a95.zip |
Rename TargetSelectionDAGInfo into SelectionDAGTargetInfo and move it to CodeGen/
It's a SelectionDAG thing, not a Target thing.
llvm-svn: 258939
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 85145fd5da0..66f47ac46e1 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -24,6 +24,7 @@ #include "llvm/CodeGen/MachineConstantPool.h" #include "llvm/CodeGen/MachineFrameInfo.h" #include "llvm/CodeGen/MachineModuleInfo.h" +#include "llvm/CodeGen/SelectionDAGTargetInfo.h" #include "llvm/IR/CallingConv.h" #include "llvm/IR/Constants.h" #include "llvm/IR/DataLayout.h" @@ -46,7 +47,6 @@ #include "llvm/Target/TargetMachine.h" #include "llvm/Target/TargetOptions.h" #include "llvm/Target/TargetRegisterInfo.h" -#include "llvm/Target/TargetSelectionDAGInfo.h" #include "llvm/Target/TargetSubtargetInfo.h" #include <algorithm> #include <cmath> |