Files
clang-p2996/lld/lib/ReaderWriter/ELF/Mips/MipsRelocationPass.h
Shankar Easwaran 14fc1c0240 Revert "[ELF][AllArchs] Fix includes"
This reverts commit e137dd93e1291a2d2fa7f41c8f8bcdb59c8b3225.

llvm-svn: 219313
2014-10-08 15:23:22 +00:00

26 lines
668 B
C++

//===- 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_MIPS_RELOCATION_PASS_H
#define LLD_READER_WRITER_ELF_MIPS_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