diff options
Diffstat (limited to 'lld/lib/ReaderWriter/ELF/ARM/ARMRelocationPass.h')
-rw-r--r-- | lld/lib/ReaderWriter/ELF/ARM/ARMRelocationPass.h | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/lld/lib/ReaderWriter/ELF/ARM/ARMRelocationPass.h b/lld/lib/ReaderWriter/ELF/ARM/ARMRelocationPass.h deleted file mode 100644 index 651e798f33b..00000000000 --- a/lld/lib/ReaderWriter/ELF/ARM/ARMRelocationPass.h +++ /dev/null @@ -1,31 +0,0 @@ -//===--------- lib/ReaderWriter/ELF/ARM/ARMRelocationPass.h ---------------===// -// -// The LLVM Linker -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -/// -/// \file -/// \brief Declares the relocation processing pass for ARM. This includes -/// GOT and PLT entries, TLS, COPY, and ifunc. -/// -//===----------------------------------------------------------------------===// - -#ifndef LLD_READER_WRITER_ELF_ARM_ARM_RELOCATION_PASS_H -#define LLD_READER_WRITER_ELF_ARM_ARM_RELOCATION_PASS_H - -#include <memory> - -namespace lld { -class Pass; -namespace elf { -class ARMLinkingContext; - -/// \brief Create ARM relocation pass for the given linking context. -std::unique_ptr<Pass> createARMRelocationPass(const ARMLinkingContext &); -} -} - -#endif |