Mercurial > hg > CbC > CbC_llvm
view lib/CodeGen/AsmPrinter/DebugLocList.h @ 77:54457678186b LLVM3.6
LLVM 3.6
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 08 Sep 2014 22:06:00 +0900 |
parents | |
children | 60c9769439b8 |
line wrap: on
line source
//===--- 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. // //===----------------------------------------------------------------------===// #ifndef LLVM_LIB_CODEGEN_ASMPRINTER_DEBUGLOCLIST_H #define LLVM_LIB_CODEGEN_ASMPRINTER_DEBUGLOCLIST_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; }; } #endif