blob: 004d5978b594fc237bb17905fbadd6c7fa59037b [file] [log] [blame]
//===- DWARFLineInfo.h ----------------------------------------------------===//
//
// The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef MCLD_DWARF_LINE_INFO_H
#define MCLD_DWARF_LINE_INFO_H
#ifdef ENABLE_UNITTEST
#include <gtest.h>
#endif
#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 of mcld
#endif