diff options
author | Reid Kleckner <rnk@google.com> | 2019-10-19 00:22:07 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2019-10-19 00:22:07 +0000 |
commit | 1d7b41361ffa208291119cd145a62a366adac569 (patch) | |
tree | 1d3c52109942410bd9a44214ce9c86367c838243 /llvm/lib/CodeGen/GlobalISel/RegisterBank.cpp | |
parent | d7a487adfedb36c88f5ca24f5bcb93f140116106 (diff) | |
download | bcm5719-llvm-1d7b41361ffa208291119cd145a62a366adac569.tar.gz bcm5719-llvm-1d7b41361ffa208291119cd145a62a366adac569.zip |
Prune two MachineInstr.h includes, fix up deps
MachineInstr.h included AliasAnalysis.h, which includes a world of IR
constructs mostly unneeded in CodeGen. Prune it. Same for
DebugInfoMetadata.h.
Noticed with -ftime-trace.
llvm-svn: 375311
Diffstat (limited to 'llvm/lib/CodeGen/GlobalISel/RegisterBank.cpp')
-rw-r--r-- | llvm/lib/CodeGen/GlobalISel/RegisterBank.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/GlobalISel/RegisterBank.cpp b/llvm/lib/CodeGen/GlobalISel/RegisterBank.cpp index 4e41f338934..fc9c802693a 100644 --- a/llvm/lib/CodeGen/GlobalISel/RegisterBank.cpp +++ b/llvm/lib/CodeGen/GlobalISel/RegisterBank.cpp @@ -12,6 +12,7 @@ #include "llvm/CodeGen/GlobalISel/RegisterBank.h" #include "llvm/CodeGen/TargetRegisterInfo.h" #include "llvm/Config/llvm-config.h" +#include "llvm/Support/Debug.h" #define DEBUG_TYPE "registerbank" |