diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2023-04-11 00:05:24 +0900 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2023-05-03 00:13:20 +0900 |
commit | c1221251fbb13f382f9142a8a75af2d3b372da7f (patch) | |
tree | cd6ecf3cc6c6068accfd566d4e6648e312692c50 /llvm/lib/CodeGen/CodeGenPrepare.cpp | |
parent | 9cfeba5b12b6bc721e4e52196d44088f5f1fff30 (diff) | |
download | llvm-c1221251fbb13f382f9142a8a75af2d3b372da7f.zip llvm-c1221251fbb13f382f9142a8a75af2d3b372da7f.tar.gz llvm-c1221251fbb13f382f9142a8a75af2d3b372da7f.tar.bz2 |
Restore CodeGen/MachineValueType.h from `Support`
This is rework of;
- rG13e77db2df94 (r328395; MVT)
Since `LowLevelType.h` has been restored to `CodeGen`, `MachinveValueType.h`
can be restored as well.
Depends on D148767
Differential Revision: https://reviews.llvm.org/D149024
Diffstat (limited to 'llvm/lib/CodeGen/CodeGenPrepare.cpp')
-rw-r--r-- | llvm/lib/CodeGen/CodeGenPrepare.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/CodeGenPrepare.cpp b/llvm/lib/CodeGen/CodeGenPrepare.cpp index 538a35f..f9e946b9 100644 --- a/llvm/lib/CodeGen/CodeGenPrepare.cpp +++ b/llvm/lib/CodeGen/CodeGenPrepare.cpp @@ -33,6 +33,7 @@ #include "llvm/CodeGen/Analysis.h" #include "llvm/CodeGen/BasicBlockSectionsProfileReader.h" #include "llvm/CodeGen/ISDOpcodes.h" +#include "llvm/CodeGen/MachineValueType.h" #include "llvm/CodeGen/SelectionDAGNodes.h" #include "llvm/CodeGen/TargetLowering.h" #include "llvm/CodeGen/TargetPassConfig.h" @@ -82,7 +83,6 @@ #include "llvm/Support/Compiler.h" #include "llvm/Support/Debug.h" #include "llvm/Support/ErrorHandling.h" -#include "llvm/Support/MachineValueType.h" #include "llvm/Support/MathExtras.h" #include "llvm/Support/raw_ostream.h" #include "llvm/Target/TargetMachine.h" |