forked from OSchip/llvm-project
Remove unused argument.
Thanks to Justin Bogner for noticing it. llvm-svn: 214426
This commit is contained in:
parent
f51dc3b5d4
commit
0c54419d5d
|
@ -379,7 +379,7 @@ static ld_plugin_status claim_file_hook(const ld_plugin_input_file *file,
|
|||
return LDPS_OK;
|
||||
}
|
||||
|
||||
static bool mustPreserve(const claimed_file &F, ld_plugin_symbol &Sym) {
|
||||
static bool mustPreserve(ld_plugin_symbol &Sym) {
|
||||
if (Sym.resolution == LDPR_PREVAILING_DEF)
|
||||
return true;
|
||||
if (Sym.resolution == LDPR_PREVAILING_DEF_IRONLY_EXP)
|
||||
|
@ -409,7 +409,7 @@ static ld_plugin_status all_symbols_read_hook(void) {
|
|||
continue;
|
||||
get_symbols(F.handle, F.syms.size(), &F.syms[0]);
|
||||
for (ld_plugin_symbol &Sym : F.syms) {
|
||||
if (mustPreserve(F, Sym)) {
|
||||
if (mustPreserve(Sym)) {
|
||||
CodeGen->addMustPreserveSymbol(Sym.name);
|
||||
|
||||
if (options::generate_api_file)
|
||||
|
|
Loading…
Reference in New Issue