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/ReachingDefAnalysis.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/ReachingDefAnalysis.cpp')
-rw-r--r-- | llvm/lib/CodeGen/ReachingDefAnalysis.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/ReachingDefAnalysis.cpp b/llvm/lib/CodeGen/ReachingDefAnalysis.cpp index f05c97ad621..2850033e641 100644 --- a/llvm/lib/CodeGen/ReachingDefAnalysis.cpp +++ b/llvm/lib/CodeGen/ReachingDefAnalysis.cpp @@ -9,6 +9,7 @@ #include "llvm/CodeGen/ReachingDefAnalysis.h" #include "llvm/CodeGen/TargetRegisterInfo.h" #include "llvm/CodeGen/TargetSubtargetInfo.h" +#include "llvm/Support/Debug.h" using namespace llvm; |