aboutsummaryrefslogtreecommitdiff
path: root/llvm/unittests/CodeGen/DIEHashTest.cpp
diff options
context:
space:
mode:
authorFrederic Riss <friss@apple.com>2015-01-05 21:29:41 +0000
committerFrederic Riss <friss@apple.com>2015-01-05 21:29:41 +0000
commite541e0b32756321dac8d5067d17901f913385ec2 (patch)
tree897c2da4d4966e6241e95a211b7a3f9762af6884 /llvm/unittests/CodeGen/DIEHashTest.cpp
parent4398850779b8d6f21ac6376440d5c857a11d40b3 (diff)
downloadllvm-e541e0b32756321dac8d5067d17901f913385ec2.zip
llvm-e541e0b32756321dac8d5067d17901f913385ec2.tar.gz
llvm-e541e0b32756321dac8d5067d17901f913385ec2.tar.bz2
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/unittests/CodeGen/DIEHashTest.cpp')
-rw-r--r--llvm/unittests/CodeGen/DIEHashTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/CodeGen/DIEHashTest.cpp b/llvm/unittests/CodeGen/DIEHashTest.cpp
index 04c5a8a..339d2a0 100644
--- a/llvm/unittests/CodeGen/DIEHashTest.cpp
+++ b/llvm/unittests/CodeGen/DIEHashTest.cpp
@@ -7,7 +7,7 @@
//
//===----------------------------------------------------------------------===//
-#include "../lib/CodeGen/AsmPrinter/DIE.h"
+#include "llvm/CodeGen/DIE.h"
#include "../lib/CodeGen/AsmPrinter/DIEHash.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/Dwarf.h"