diff options
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DebugLocList.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DebugLocList.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DebugLocList.h b/llvm/lib/CodeGen/AsmPrinter/DebugLocList.h index 7a51c7bd5b0..542896c88e5 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DebugLocList.h +++ b/llvm/lib/CodeGen/AsmPrinter/DebugLocList.h @@ -10,13 +10,15 @@ #ifndef CODEGEN_ASMPRINTER_DEBUGLOCLIST_H__ #define CODEGEN_ASMPRINTER_DEBUGLOCLIST_H__ -#include "llvm/MC/MCSymbol.h" #include "llvm/ADT/SmallVector.h" #include "DebugLocEntry.h" namespace llvm { +class DwarfCompileUnit; +class MCSymbol; struct DebugLocList { MCSymbol *Label; + DwarfCompileUnit *CU; SmallVector<DebugLocEntry, 4> List; }; } |