diff options
author | Eugene Zelenko <eugene.zelenko@gmail.com> | 2017-03-01 01:14:23 +0000 |
---|---|---|
committer | Eugene Zelenko <eugene.zelenko@gmail.com> | 2017-03-01 01:14:23 +0000 |
commit | 28db7e65e5d377488e68a7aa7e914d2f5549a0b2 (patch) | |
tree | 4053f5e269a44c26ba34e6fe2750014951737036 /llvm/lib/DebugInfo/DWARF/DWARFDebugMacro.cpp | |
parent | 466f0653a31817b6201c6e01d49e6e7f76b98cfb (diff) | |
download | bcm5719-llvm-28db7e65e5d377488e68a7aa7e914d2f5549a0b2.tar.gz bcm5719-llvm-28db7e65e5d377488e68a7aa7e914d2f5549a0b2.zip |
[DebugInfo] Fix some Include What You Use warnings; other minor fixes (NFC).
llvm-svn: 296559
Diffstat (limited to 'llvm/lib/DebugInfo/DWARF/DWARFDebugMacro.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/DWARF/DWARFDebugMacro.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/DebugInfo/DWARF/DWARFDebugMacro.cpp b/llvm/lib/DebugInfo/DWARF/DWARFDebugMacro.cpp index 7710a90b5e1..e0a9adde8e5 100644 --- a/llvm/lib/DebugInfo/DWARF/DWARFDebugMacro.cpp +++ b/llvm/lib/DebugInfo/DWARF/DWARFDebugMacro.cpp @@ -1,4 +1,4 @@ -//===-- DWARFDebugMacro.cpp -----------------------------------------------===// +//===- DWARFDebugMacro.cpp ------------------------------------------------===// // // The LLVM Compiler Infrastructure // @@ -7,11 +7,11 @@ // //===----------------------------------------------------------------------===// -#include "llvm/DebugInfo/DWARF/DWARFDebugMacro.h" #include "SyntaxHighlighting.h" +#include "llvm/DebugInfo/DWARF/DWARFDebugMacro.h" #include "llvm/Support/Dwarf.h" -#include "llvm/Support/Format.h" #include "llvm/Support/raw_ostream.h" +#include <cstdint> using namespace llvm; using namespace dwarf; |