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/DWARFDebugRangeList.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/DWARFDebugRangeList.cpp')
-rw-r--r-- | llvm/lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp b/llvm/lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp index d5df6885f5e..f1d82fda8c0 100644 --- a/llvm/lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp +++ b/llvm/lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp @@ -1,4 +1,4 @@ -//===-- DWARFDebugRangesList.cpp ------------------------------------------===// +//===- DWARFDebugRangesList.cpp -------------------------------------------===// // // The LLVM Compiler Infrastructure // @@ -10,6 +10,9 @@ #include "llvm/DebugInfo/DWARF/DWARFDebugRangeList.h" #include "llvm/Support/Format.h" #include "llvm/Support/raw_ostream.h" +#include <cinttypes> +#include <cstdint> +#include <utility> using namespace llvm; |