diff options
author | David Blaikie <dblaikie@gmail.com> | 2017-11-03 20:24:19 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2017-11-03 20:24:19 +0000 |
commit | 526f30b8aac7fdbfad1a23d77bbb3ba9af800c60 (patch) | |
tree | 4e431f4646c056cef0bc72242de128f750711293 /llvm/lib/CodeGen | |
parent | 72f6563bb39fa2cb3bfe3c9d278bd07e99a502e2 (diff) | |
download | bcm5719-llvm-526f30b8aac7fdbfad1a23d77bbb3ba9af800c60.tar.gz bcm5719-llvm-526f30b8aac7fdbfad1a23d77bbb3ba9af800c60.zip |
Modularize: Include some required headers
DenseMaps require the definition of a type to be available when using a
pointer to that type as a key to know how many bits are available for
tombstone/etc.
llvm-svn: 317360
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfFile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfFile.h b/llvm/lib/CodeGen/AsmPrinter/DwarfFile.h index 6e4625ba411..167ca13c19c 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfFile.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfFile.h @@ -15,6 +15,7 @@ #include "llvm/ADT/SmallVector.h" #include "llvm/ADT/StringRef.h" #include "llvm/CodeGen/DIE.h" +#include "llvm/IR/Metadata.h" #include "llvm/Support/Allocator.h" #include <memory> #include <utility> @@ -27,7 +28,6 @@ class DwarfCompileUnit; class DwarfUnit; class LexicalScope; class MCSection; -class MDNode; class DwarfFile { // Target of Dwarf emission, used for sizing of abbreviations. |