x86, relocs: Remove an unused variable
sh_symtab is set but not used. Signed-off-by: Kusanagi Kouichi <slash@ac.auone-net.jp> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
parent
59bf896406
commit
42a6bd2006
1 changed files with 0 additions and 2 deletions
|
@ -403,13 +403,11 @@ static void print_absolute_symbols(void)
|
||||||
for (i = 0; i < ehdr.e_shnum; i++) {
|
for (i = 0; i < ehdr.e_shnum; i++) {
|
||||||
struct section *sec = &secs[i];
|
struct section *sec = &secs[i];
|
||||||
char *sym_strtab;
|
char *sym_strtab;
|
||||||
Elf32_Sym *sh_symtab;
|
|
||||||
int j;
|
int j;
|
||||||
|
|
||||||
if (sec->shdr.sh_type != SHT_SYMTAB) {
|
if (sec->shdr.sh_type != SHT_SYMTAB) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
sh_symtab = sec->symtab;
|
|
||||||
sym_strtab = sec->link->strtab;
|
sym_strtab = sec->link->strtab;
|
||||||
for (j = 0; j < sec->shdr.sh_size/sizeof(Elf32_Sym); j++) {
|
for (j = 0; j < sec->shdr.sh_size/sizeof(Elf32_Sym); j++) {
|
||||||
Elf32_Sym *sym;
|
Elf32_Sym *sym;
|
||||||
|
|
Loading…
Add table
Reference in a new issue