diff options
author | Frederic Riss <friss@apple.com> | 2015-01-05 21:29:41 +0000 |
---|---|---|
committer | Frederic Riss <friss@apple.com> | 2015-01-05 21:29:41 +0000 |
commit | e541e0b32756321dac8d5067d17901f913385ec2 (patch) | |
tree | 897c2da4d4966e6241e95a211b7a3f9762af6884 /llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h | |
parent | 4398850779b8d6f21ac6376440d5c857a11d40b3 (diff) | |
download | bcm5719-llvm-e541e0b32756321dac8d5067d17901f913385ec2.tar.gz bcm5719-llvm-e541e0b32756321dac8d5067d17901f913385ec2.zip |
Make DIE.h a public CodeGen header.
dsymutil would like to use all the AsmPrinter/MCStreamer infrastructure
to stream out the DWARF. In order to do so, it will reuse the DIE object
and so this header needs to be public.
The interface exposed here has some corners that cannot be used without a
DwarfDebug object, but clients that want to stream Dwarf can just avoid
these.
Differential Revision: http://reviews.llvm.org/D6695
llvm-svn: 225208
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h b/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h index 80b2abcf641..ed54e64ee49 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h @@ -14,12 +14,12 @@ #ifndef LLVM_LIB_CODEGEN_ASMPRINTER_DWARFUNIT_H #define LLVM_LIB_CODEGEN_ASMPRINTER_DWARFUNIT_H -#include "DIE.h" #include "DwarfDebug.h" #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/Optional.h" #include "llvm/ADT/StringMap.h" #include "llvm/CodeGen/AsmPrinter.h" +#include "llvm/CodeGen/DIE.h" #include "llvm/IR/DIBuilder.h" #include "llvm/IR/DebugInfo.h" #include "llvm/MC/MCExpr.h" |