diff options
author | Nico Weber <thakis@chromium.org> | 2024-01-25 12:01:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-25 12:01:31 -0500 |
commit | 184ca39529a93e69eb175861d7fff5fc79988e53 (patch) | |
tree | 852bd8fb645bb1148566eabca945b43cb49209c5 /llvm/lib/CodeGen/MachineInstr.cpp | |
parent | 1f454ede4660477c3782595975def90c26c19881 (diff) | |
download | llvm-184ca39529a93e69eb175861d7fff5fc79988e53.zip llvm-184ca39529a93e69eb175861d7fff5fc79988e53.tar.gz llvm-184ca39529a93e69eb175861d7fff5fc79988e53.tar.bz2 |
[llvm] Move CodeGenTypes library to its own directory (#79444)
Finally addresses https://reviews.llvm.org/D148769#4311232 :)
No behavior change.
Diffstat (limited to 'llvm/lib/CodeGen/MachineInstr.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineInstr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineInstr.cpp b/llvm/lib/CodeGen/MachineInstr.cpp index 27eae37..efbcc83 100644 --- a/llvm/lib/CodeGen/MachineInstr.cpp +++ b/llvm/lib/CodeGen/MachineInstr.cpp @@ -18,7 +18,6 @@ #include "llvm/ADT/SmallVector.h" #include "llvm/Analysis/AliasAnalysis.h" #include "llvm/Analysis/MemoryLocation.h" -#include "llvm/CodeGen/LowLevelType.h" #include "llvm/CodeGen/MachineBasicBlock.h" #include "llvm/CodeGen/MachineFrameInfo.h" #include "llvm/CodeGen/MachineFunction.h" @@ -34,6 +33,7 @@ #include "llvm/CodeGen/TargetInstrInfo.h" #include "llvm/CodeGen/TargetRegisterInfo.h" #include "llvm/CodeGen/TargetSubtargetInfo.h" +#include "llvm/CodeGenTypes/LowLevelType.h" #include "llvm/IR/Constants.h" #include "llvm/IR/DebugInfoMetadata.h" #include "llvm/IR/DebugLoc.h" |