24 lines
693 B
C++
24 lines
693 B
C++
//===- DWARFLineInfo.h ----------------------------------------------------===//
|
|
//
|
|
// The MCLinker Project
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
#ifndef MCLD_LD_DWARFLINEINFO_H_
|
|
#define MCLD_LD_DWARFLINEINFO_H_
|
|
#include "mcld/LD/DiagnosticLineInfo.h"
|
|
|
|
namespace mcld {
|
|
|
|
/** \class DWARFLineInfo
|
|
* \brief DWARFLineInfo provides the conversion from address to line of code
|
|
* by DWARF format.
|
|
*/
|
|
class DWARFLineInfo : public DiagnosticLineInfo {};
|
|
|
|
} // namespace mcld
|
|
|
|
#endif // MCLD_LD_DWARFLINEINFO_H_
|