]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - opencl/llvm.git/blob - lib/CodeGen/AsmPrinter/DebugLocList.h
Don't pre-populate the set of keys in the map with variable locations history.
[opencl/llvm.git] / lib / CodeGen / AsmPrinter / DebugLocList.h
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 //===----------------------------------------------------------------------===//
10 #ifndef CODEGEN_ASMPRINTER_DEBUGLOCLIST_H__
11 #define CODEGEN_ASMPRINTER_DEBUGLOCLIST_H__
13 #include "llvm/MC/MCSymbol.h"
14 #include "llvm/ADT/SmallVector.h"
15 #include "DebugLocEntry.h"
17 namespace llvm {
18 struct DebugLocList {
19   MCSymbol *Label;
20   SmallVector<DebugLocEntry, 4> List;
21 };
22 }
23 #endif