diff options
author | Chris Lattner <sabre@nondot.org> | 2010-04-05 05:28:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-04-05 05:28:23 +0000 |
commit | da790ea006cb4007196393fefd24a8ac48b3e35b (patch) | |
tree | 9b81668d4437d3154889eb8c8abd6fe789ac1520 /llvm/lib/CodeGen/AsmPrinter/DwarfException.h | |
parent | 3f3fb970e4d3c40668bda2a4ffd1e1b82aa22590 (diff) | |
download | bcm5719-llvm-da790ea006cb4007196393fefd24a8ac48b3e35b.tar.gz bcm5719-llvm-da790ea006cb4007196393fefd24a8ac48b3e35b.zip |
prune #includes, MMI can never be null
llvm-svn: 100408
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfException.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfException.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfException.h b/llvm/lib/CodeGen/AsmPrinter/DwarfException.h index 0c53cd87924..15020b86c97 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfException.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfException.h @@ -14,18 +14,23 @@ #ifndef LLVM_CODEGEN_ASMPRINTER_DWARFEXCEPTION_H #define LLVM_CODEGEN_ASMPRINTER_DWARFEXCEPTION_H -#include "llvm/CodeGen/AsmPrinter.h" #include "llvm/ADT/DenseMap.h" -#include <string> +#include <vector> namespace llvm { +template <typename T> class SmallVectorImpl; struct LandingPadInfo; class MachineModuleInfo; +class MachineMove; +class MachineInstr; +class MachineFunction; class MCAsmInfo; class MCExpr; +class MCSymbol; class Timer; -class raw_ostream; +class Function; +class AsmPrinter; //===----------------------------------------------------------------------===// /// DwarfException - Emits Dwarf exception handling directives. |