diff options
author | Chris Lattner <sabre@nondot.org> | 2010-04-05 06:12:01 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-04-05 06:12:01 +0000 |
commit | 28f2fdafcd766ba69ec8e335e431c457605dbddb (patch) | |
tree | c0b7378eda77d0d4874fdb325a837cc549984e09 /llvm | |
parent | 6361414c886de362343ef12cc19741011ad606b6 (diff) | |
download | bcm5719-llvm-28f2fdafcd766ba69ec8e335e431c457605dbddb.tar.gz bcm5719-llvm-28f2fdafcd766ba69ec8e335e431c457605dbddb.zip |
hopefully sate the clang self host build, which is apparently
instantiating some folding set stuff that GCC isn't, requiring
some types to not be incomplete.
I don't know if clang is right or wrong, but unbreaking the
bot is goodness. Here's the broken build:
http://google1.osuosl.org:8011/builders/clang-x86_64-darwin10-selfhost/builds/1813/steps/compile.llvm.stage2/logs/stdio
llvm-svn: 100418
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index 31e4885eabf..c7baf5f5d38 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -15,6 +15,7 @@ #define CODEGEN_ASMPRINTER_DWARFDEBUG_H__ #include "llvm/CodeGen/AsmPrinter.h" +#include "DIE.h" #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/FoldingSet.h" #include "llvm/ADT/SmallPtrSet.h" |