1affc150dc44fab1911775a49636d0ce85333b634Zonr Chang//===- DWARFLineInfo.h ----------------------------------------------------===//
2affc150dc44fab1911775a49636d0ce85333b634Zonr Chang//
3affc150dc44fab1911775a49636d0ce85333b634Zonr Chang//                     The MCLinker Project
4affc150dc44fab1911775a49636d0ce85333b634Zonr Chang//
5affc150dc44fab1911775a49636d0ce85333b634Zonr Chang// This file is distributed under the University of Illinois Open Source
6affc150dc44fab1911775a49636d0ce85333b634Zonr Chang// License. See LICENSE.TXT for details.
7affc150dc44fab1911775a49636d0ce85333b634Zonr Chang//
8affc150dc44fab1911775a49636d0ce85333b634Zonr Chang//===----------------------------------------------------------------------===//
937b74a387bb3993387029859c2d9d051c41c724eStephen Hines#ifndef MCLD_LD_DWARFLINEINFO_H_
1037b74a387bb3993387029859c2d9d051c41c724eStephen Hines#define MCLD_LD_DWARFLINEINFO_H_
1137b74a387bb3993387029859c2d9d051c41c724eStephen Hines#include "mcld/LD/DiagnosticLineInfo.h"
12affc150dc44fab1911775a49636d0ce85333b634Zonr Chang
1337b74a387bb3993387029859c2d9d051c41c724eStephen Hinesnamespace mcld {
14affc150dc44fab1911775a49636d0ce85333b634Zonr Chang
15affc150dc44fab1911775a49636d0ce85333b634Zonr Chang/** \class DWARFLineInfo
16affc150dc44fab1911775a49636d0ce85333b634Zonr Chang *  \brief DWARFLineInfo provides the conversion from address to line of code
17affc150dc44fab1911775a49636d0ce85333b634Zonr Chang *  by DWARF format.
18affc150dc44fab1911775a49636d0ce85333b634Zonr Chang */
1937b74a387bb3993387029859c2d9d051c41c724eStephen Hinesclass DWARFLineInfo : public DiagnosticLineInfo {};
20affc150dc44fab1911775a49636d0ce85333b634Zonr Chang
2137b74a387bb3993387029859c2d9d051c41c724eStephen Hines}  // namespace mcld
22affc150dc44fab1911775a49636d0ce85333b634Zonr Chang
2337b74a387bb3993387029859c2d9d051c41c724eStephen Hines#endif  // MCLD_LD_DWARFLINEINFO_H_
24