diff options
author | David Blaikie <dblaikie@gmail.com> | 2018-03-23 23:58:31 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2018-03-23 23:58:31 +0000 |
commit | 36a0f226b18355ee59c1948c784d88cb148776f4 (patch) | |
tree | 41c58ec6d59f05fd8233de71c5f36899accd17c0 /llvm/lib/CodeGen/SelectionDAG/FastISel.cpp | |
parent | b48ba4e6bc33028d7c2167d9fd4bf5c9fb8a83c9 (diff) | |
download | bcm5719-llvm-36a0f226b18355ee59c1948c784d88cb148776f4.tar.gz bcm5719-llvm-36a0f226b18355ee59c1948c784d88cb148776f4.zip |
Fix layering by moving ValueTypes.h from CodeGen to IR
ValueTypes.h is implemented in IR already.
llvm-svn: 328397
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/FastISel.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/FastISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp index 601691a795a..65604362ed7 100644 --- a/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp @@ -65,7 +65,6 @@ #include "llvm/CodeGen/TargetInstrInfo.h" #include "llvm/CodeGen/TargetLowering.h" #include "llvm/CodeGen/TargetSubtargetInfo.h" -#include "llvm/CodeGen/ValueTypes.h" #include "llvm/IR/Argument.h" #include "llvm/IR/Attributes.h" #include "llvm/IR/BasicBlock.h" @@ -92,6 +91,7 @@ #include "llvm/IR/Type.h" #include "llvm/IR/User.h" #include "llvm/IR/Value.h" +#include "llvm/IR/ValueTypes.h" #include "llvm/MC/MCContext.h" #include "llvm/MC/MCInstrDesc.h" #include "llvm/MC/MCRegisterInfo.h" |