2014-04-02 01:43:18 +00:00
|
|
|
//===--- lib/CodeGen/DebugLocList.h - DWARF debug_loc list ------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_CODEGEN_ASMPRINTER_DEBUGLOCLIST_H
|
|
|
|
#define LLVM_LIB_CODEGEN_ASMPRINTER_DEBUGLOCLIST_H
|
2014-04-02 01:43:18 +00:00
|
|
|
|
|
|
|
#include "llvm/ADT/SmallVector.h"
|
|
|
|
#include "DebugLocEntry.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
2014-08-05 23:14:16 +00:00
|
|
|
class DwarfCompileUnit;
|
|
|
|
class MCSymbol;
|
2014-04-02 01:43:18 +00:00
|
|
|
struct DebugLocList {
|
|
|
|
MCSymbol *Label;
|
2014-08-05 23:14:16 +00:00
|
|
|
DwarfCompileUnit *CU;
|
2014-04-02 01:43:18 +00:00
|
|
|
SmallVector<DebugLocEntry, 4> List;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|