diff options
author | Eugene Zelenko <eugene.zelenko@gmail.com> | 2017-08-01 21:20:10 +0000 |
---|---|---|
committer | Eugene Zelenko <eugene.zelenko@gmail.com> | 2017-08-01 21:20:10 +0000 |
commit | 52889219effe9cb3646b921a1dec74d4e139ee7d (patch) | |
tree | 4341d268a416063561cce73912e1e50284a5ccf0 /llvm/lib/Target/Hexagon/RDFGraph.cpp | |
parent | d4e03d59cb23b9639096264acf8e973589b4f5ad (diff) | |
download | bcm5719-llvm-52889219effe9cb3646b921a1dec74d4e139ee7d.tar.gz bcm5719-llvm-52889219effe9cb3646b921a1dec74d4e139ee7d.zip |
[Hexagon] Fix some Clang-tidy modernize-use-using and Include What You Use warnings; other minor fixes (NFC).
llvm-svn: 309746
Diffstat (limited to 'llvm/lib/Target/Hexagon/RDFGraph.cpp')
-rw-r--r-- | llvm/lib/Target/Hexagon/RDFGraph.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/llvm/lib/Target/Hexagon/RDFGraph.cpp b/llvm/lib/Target/Hexagon/RDFGraph.cpp index 8d127237089..6d9e234ee14 100644 --- a/llvm/lib/Target/Hexagon/RDFGraph.cpp +++ b/llvm/lib/Target/Hexagon/RDFGraph.cpp @@ -1,4 +1,4 @@ -//===--- RDFGraph.cpp -----------------------------------------------------===// +//===- RDFGraph.cpp -------------------------------------------------------===// // // The LLVM Compiler Infrastructure // @@ -10,6 +10,8 @@ // Target-independent, SSA-based data flow graph for register data flow (RDF). // #include "RDFGraph.h" +#include "RDFRegisters.h" +#include "llvm/ADT/BitVector.h" #include "llvm/ADT/STLExtras.h" #include "llvm/ADT/SetVector.h" #include "llvm/CodeGen/MachineBasicBlock.h" @@ -23,16 +25,19 @@ #include "llvm/MC/LaneBitmask.h" #include "llvm/MC/MCInstrDesc.h" #include "llvm/MC/MCRegisterInfo.h" +#include "llvm/Support/Debug.h" #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/raw_ostream.h" #include "llvm/Target/TargetInstrInfo.h" #include "llvm/Target/TargetLowering.h" #include "llvm/Target/TargetRegisterInfo.h" +#include "llvm/Target/TargetSubtargetInfo.h" #include <algorithm> #include <cassert> #include <cstdint> #include <cstring> #include <iterator> +#include <set> #include <utility> #include <vector> @@ -201,7 +206,7 @@ namespace { struct PrintListV { PrintListV(const NodeList &L, const DataFlowGraph &G) : List(L), G(G) {} - typedef T Type; + using Type = T; const NodeList &List; const DataFlowGraph &G; }; |