From 31b8ab0fa67c63ddd067f1cac6d21d61c16afc27 Mon Sep 17 00:00:00 2001 From: Mehdi Amini Date: Thu, 19 Nov 2015 15:42:34 +0000 Subject: [PATCH] Remove unused function parameter (NFC) From: Mehdi Amini git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@253569 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/gold/gold-plugin.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tools/gold/gold-plugin.cpp b/tools/gold/gold-plugin.cpp index 116df7903ee..77e4b83223c 100644 --- a/tools/gold/gold-plugin.cpp +++ b/tools/gold/gold-plugin.cpp @@ -609,8 +609,7 @@ static void freeSymName(ld_plugin_symbol &Sym) { } static std::unique_ptr -getFunctionIndexForFile(LLVMContext &Context, claimed_file &F, - ld_plugin_input_file &Info) { +getFunctionIndexForFile(claimed_file &F, ld_plugin_input_file &Info) { if (get_symbols(F.handle, F.syms.size(), &F.syms[0]) != LDPS_OK) message(LDPL_FATAL, "Failed to get symbol information"); @@ -911,7 +910,7 @@ static ld_plugin_status allSymbolsReadHook(raw_fd_ostream *ApiFile) { message(LDPL_FATAL, "Failed to get file information"); std::unique_ptr Index = - getFunctionIndexForFile(Context, F, File); + getFunctionIndexForFile(F, File); CombinedIndex.mergeFrom(std::move(Index), ++NextModuleId); } -- 2.34.1