aboutsummaryrefslogtreecommitdiff
path: root/deps/lld/ELF/ScriptParser.h
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2020-01-16 13:09:45 -0500
committerAndrew Kelley <andrew@ziglang.org>2020-01-16 13:09:45 -0500
commitba4cc03b4f0d71ac3e0147aa3dde449299ce8cd5 (patch)
tree88e0c274db5c1c943944c565833bea103692a556 /deps/lld/ELF/ScriptParser.h
parentfbe6af81fdb1b964bb0c28f51de2458800b8274c (diff)
downloadzig-ba4cc03b4f0d71ac3e0147aa3dde449299ce8cd5.tar.gz
zig-ba4cc03b4f0d71ac3e0147aa3dde449299ce8cd5.zip
remove embedded LLD
we no longer have any patches against upstream LLD
Diffstat (limited to 'deps/lld/ELF/ScriptParser.h')
-rw-r--r--deps/lld/ELF/ScriptParser.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/deps/lld/ELF/ScriptParser.h b/deps/lld/ELF/ScriptParser.h
deleted file mode 100644
index c953fb302b..0000000000
--- a/deps/lld/ELF/ScriptParser.h
+++ /dev/null
@@ -1,33 +0,0 @@
-//===- ScriptParser.h -------------------------------------------*- C++ -*-===//
-//
-// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
-// See https://llvm.org/LICENSE.txt for license information.
-// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef LLD_ELF_SCRIPT_PARSER_H
-#define LLD_ELF_SCRIPT_PARSER_H
-
-#include "lld/Common/LLVM.h"
-#include "llvm/Support/MemoryBuffer.h"
-
-namespace lld {
-namespace elf {
-
-// Parses a linker script. Calling this function updates
-// lld::elf::config and lld::elf::script.
-void readLinkerScript(MemoryBufferRef mb);
-
-// Parses a version script.
-void readVersionScript(MemoryBufferRef mb);
-
-void readDynamicList(MemoryBufferRef mb);
-
-// Parses the defsym expression.
-void readDefsym(StringRef name, MemoryBufferRef mb);
-
-} // namespace elf
-} // namespace lld
-
-#endif