blob: 7b2481a9f043f8cc4db2dcdfbe2c3004ef9518cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
//===- lib/ReaderWriter/ELF/Mips/MipsRelocationPass.h ---------------------===//
//
// The LLVM Linker
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef LLD_READER_WRITER_ELF_MIPS_RELOCATION_PASS_H
#define LLD_READER_WRITER_ELF_MIPS_RELOCATION_PASS_H
#include <memory>
namespace lld {
class Pass;
namespace elf {
class MipsLinkingContext;
std::unique_ptr<Pass> createMipsRelocationPass(MipsLinkingContext &ctx);
} // end namespace elf
} // end namespace lld
#endif
|