mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
Simplify. No functionality change.
Thanks to Alp Toker for noticing it. llvm-svn: 211320
This commit is contained in:
parent
4cbec707e6
commit
efbf6a1361
@ -322,8 +322,7 @@ static ld_plugin_status claim_file_hook(const ld_plugin_input_file *file,
|
||||
|
||||
cf.syms.push_back(ld_plugin_symbol());
|
||||
ld_plugin_symbol &sym = cf.syms.back();
|
||||
sym.name = const_cast<char *>(M->getSymbolName(i));
|
||||
sym.name = strdup(sym.name);
|
||||
sym.name = strdup(M->getSymbolName(i));
|
||||
sym.version = NULL;
|
||||
|
||||
int scope = attrs & LTO_SYMBOL_SCOPE_MASK;
|
||||
|
Loading…
Reference in New Issue
Block a user