diff options
author | Arthur Eubanks <aeubanks@google.com> | 2023-10-16 10:42:22 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-16 10:42:22 -0700 |
commit | 5fab20bc7e5513d197e19cee8ce4e2706b7dd3b3 (patch) | |
tree | a0dbff307fd1e3d8daa9036fd23ce5870c137001 /llvm/lib/CodeGen/MachineOperand.cpp | |
parent | 5e4ec53b8efaa2a5215dd68f970d3c913ce07a20 (diff) | |
download | llvm-5fab20bc7e5513d197e19cee8ce4e2706b7dd3b3.zip llvm-5fab20bc7e5513d197e19cee8ce4e2706b7dd3b3.tar.gz llvm-5fab20bc7e5513d197e19cee8ce4e2706b7dd3b3.tar.bz2 |
[NFC] Move StableHashing.h from CodeGen to ADT (#67704)
Diffstat (limited to 'llvm/lib/CodeGen/MachineOperand.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineOperand.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineOperand.cpp b/llvm/lib/CodeGen/MachineOperand.cpp index 788c134..b6d6a75 100644 --- a/llvm/lib/CodeGen/MachineOperand.cpp +++ b/llvm/lib/CodeGen/MachineOperand.cpp @@ -11,13 +11,13 @@ //===----------------------------------------------------------------------===// #include "llvm/CodeGen/MachineOperand.h" +#include "llvm/ADT/StableHashing.h" #include "llvm/ADT/StringExtras.h" #include "llvm/Analysis/Loads.h" #include "llvm/CodeGen/MIRFormatter.h" #include "llvm/CodeGen/MachineFrameInfo.h" #include "llvm/CodeGen/MachineJumpTableInfo.h" #include "llvm/CodeGen/MachineRegisterInfo.h" -#include "llvm/CodeGen/StableHashing.h" #include "llvm/CodeGen/TargetInstrInfo.h" #include "llvm/CodeGen/TargetRegisterInfo.h" #include "llvm/Config/llvm-config.h" |