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 LLVM_LIB_CODEGEN_ASMPRINTER_DEBUGLOCLIST_H 11 #define LLVM_LIB_CODEGEN_ASMPRINTER_DEBUGLOCLIST_H 12 13 #include "DebugLocEntry.h" 14 #include "llvm/ADT/SmallVector.h" 15 16 namespace llvm { 17 class DwarfCompileUnit; 18 class MCSymbol; 19 struct DebugLocList { 20 MCSymbol *Label; 21 DwarfCompileUnit *CU; 22 SmallVector<DebugLocEntry, 4> List; 23 }; 24 } 25 #endif 26