mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
1b279144ec
utils/sort_includes.py. I clearly haven't done this in a while, so more changed than usual. This even uncovered a missing include from the InstrProf library that I've added. No functionality changed here, just mechanical cleanup of the include order. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225974 91177308-0d34-0410-b5e6-96231b3b80d8
26 lines
679 B
C++
26 lines
679 B
C++
//===--- 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 "DebugLocEntry.h"
|
|
#include "llvm/ADT/SmallVector.h"
|
|
|
|
namespace llvm {
|
|
class DwarfCompileUnit;
|
|
class MCSymbol;
|
|
struct DebugLocList {
|
|
MCSymbol *Label;
|
|
DwarfCompileUnit *CU;
|
|
SmallVector<DebugLocEntry, 4> List;
|
|
};
|
|
}
|
|
#endif
|