David Blaikie | 0a456de | 2014-04-02 01:43:18 +0000 | [diff] [blame] | 1 | //===--- lib/CodeGen/DebugLocList.h - DWARF debug_loc list ------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #ifndef CODEGEN_ASMPRINTER_DEBUGLOCLIST_H__ |
| 11 | #define CODEGEN_ASMPRINTER_DEBUGLOCLIST_H__ |
| 12 | |
David Blaikie | 0a456de | 2014-04-02 01:43:18 +0000 | [diff] [blame] | 13 | #include "llvm/ADT/SmallVector.h" |
| 14 | #include "DebugLocEntry.h" |
| 15 | |
| 16 | namespace llvm { |
David Blaikie | e1a26a6 | 2014-08-05 23:14:16 +0000 | [diff] [blame] | 17 | class DwarfCompileUnit; |
| 18 | class MCSymbol; |
David Blaikie | 0a456de | 2014-04-02 01:43:18 +0000 | [diff] [blame] | 19 | struct DebugLocList { |
| 20 | MCSymbol *Label; |
David Blaikie | e1a26a6 | 2014-08-05 23:14:16 +0000 | [diff] [blame] | 21 | DwarfCompileUnit *CU; |
David Blaikie | 0a456de | 2014-04-02 01:43:18 +0000 | [diff] [blame] | 22 | SmallVector<DebugLocEntry, 4> List; |
| 23 | }; |
| 24 | } |
| 25 | #endif |