LLVM API Documentation

DebugLocList.h
Go to the documentation of this file.
00001 //===--- lib/CodeGen/DebugLocList.h - DWARF debug_loc list ------*- C++ -*-===//
00002 //
00003 //                     The LLVM Compiler Infrastructure
00004 //
00005 // This file is distributed under the University of Illinois Open Source
00006 // License. See LICENSE.TXT for details.
00007 //
00008 //===----------------------------------------------------------------------===//
00009 
00010 #ifndef LLVM_LIB_CODEGEN_ASMPRINTER_DEBUGLOCLIST_H
00011 #define LLVM_LIB_CODEGEN_ASMPRINTER_DEBUGLOCLIST_H
00012 
00013 #include "llvm/ADT/SmallVector.h"
00014 #include "DebugLocEntry.h"
00015 
00016 namespace llvm {
00017 class DwarfCompileUnit;
00018 class MCSymbol;
00019 struct DebugLocList {
00020   MCSymbol *Label;
00021   DwarfCompileUnit *CU;
00022   SmallVector<DebugLocEntry, 4> List;
00023 };
00024 }
00025 #endif