diff options
Diffstat (limited to 'lld/lib/ReaderWriter/ELF/ArrayOrderPass.h')
-rw-r--r-- | lld/lib/ReaderWriter/ELF/ArrayOrderPass.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/lld/lib/ReaderWriter/ELF/ArrayOrderPass.h b/lld/lib/ReaderWriter/ELF/ArrayOrderPass.h deleted file mode 100644 index 0688fdc63d2..00000000000 --- a/lld/lib/ReaderWriter/ELF/ArrayOrderPass.h +++ /dev/null @@ -1,26 +0,0 @@ -//===- lib/ReaderWriter/ELF/ArrayOrderPass.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_ARRAY_ORDER_PASS_H -#define LLD_READER_WRITER_ELF_ARRAY_ORDER_PASS_H - -#include "lld/Core/Pass.h" - -namespace lld { -namespace elf { -/// \brief This pass sorts atoms in .{init,fini}_array.<priority> sections. -class ArrayOrderPass : public Pass { -public: - ArrayOrderPass() : Pass() {} - void perform(std::unique_ptr<MutableFile> &mergedFile) override; -}; -} -} - -#endif |