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 | 6d7337896f1bcdfbdee90c9c33371c2a373f422a (patch) | |
tree | 25a3c2cad3585b10d3a3dfb5a13ed78eb4286356 /lib/CodeGen/AsmPrinter/DwarfException.h | |
parent | 74e41f982100b225936d75047dccbe5f1988b1d0 (diff) | |
download | external_llvm-6d7337896f1bcdfbdee90c9c33371c2a373f422a.tar.gz external_llvm-6d7337896f1bcdfbdee90c9c33371c2a373f422a.tar.bz2 external_llvm-6d7337896f1bcdfbdee90c9c33371c2a373f422a.zip |
prune #includes, MMI can never be null
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100408 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfException.h')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfException.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfException.h b/lib/CodeGen/AsmPrinter/DwarfException.h index 0c53cd8792..15020b86c9 100644 --- a/lib/CodeGen/AsmPrinter/DwarfException.h +++ b/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. |