projects
/
oota-llvm.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Remove unused function parameter (NFC)
[oota-llvm.git]
/
tools
/
gold
/
gold-plugin.cpp
diff --git
a/tools/gold/gold-plugin.cpp
b/tools/gold/gold-plugin.cpp
index 116df7903eeb61d4c72a4ee01638097812ec4379..77e4b83223c6d597dcea0cba261698e8d6b9131d 100644
(file)
--- 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<FunctionInfoIndex>
}
static std::unique_ptr<FunctionInfoIndex>
-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");
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<FunctionInfoIndex> Index =
message(LDPL_FATAL, "Failed to get file information");
std::unique_ptr<FunctionInfoIndex> Index =
- getFunctionIndexForFile(
Context,
F, File);
+ getFunctionIndexForFile(F, File);
CombinedIndex.mergeFrom(std::move(Index), ++NextModuleId);
}
CombinedIndex.mergeFrom(std::move(Index), ++NextModuleId);
}