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/DIEHash.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/DIEHash.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DIEHash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DIEHash.h b/llvm/lib/CodeGen/AsmPrinter/DIEHash.h index 872aa0eb2b9..316a3567af8 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DIEHash.h +++ b/llvm/lib/CodeGen/AsmPrinter/DIEHash.h @@ -14,7 +14,7 @@ #ifndef LLVM_LIB_CODEGEN_ASMPRINTER_DIEHASH_H #define LLVM_LIB_CODEGEN_ASMPRINTER_DIEHASH_H -#include "DIE.h" +#include "llvm/CodeGen/DIE.h" #include "llvm/ADT/DenseMap.h" #include "llvm/Support/MD5.h" |