2001-03-30 H.J. Lu <hjl@gnu.org>
* readelf.c (process_unwind): Just return if do_unwind is 0.
This commit is contained in:
parent
cdbc6895e5
commit
e58d53afc0
2 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2001-03-30 H.J. Lu <hjl@gnu.org>
|
||||||
|
|
||||||
|
* readelf.c (process_unwind): Just return if do_unwind is 0.
|
||||||
|
|
||||||
2001-03-28 Roger Sayle <roger@metaphorics.com>
|
2001-03-28 Roger Sayle <roger@metaphorics.com>
|
||||||
|
|
||||||
* dlltool.c (make_one_lib_file): Fix section flags for
|
* dlltool.c (make_one_lib_file): Fix section flags for
|
||||||
|
|
|
@ -3411,6 +3411,9 @@ process_unwind (file)
|
||||||
unsigned long i, addr_size;
|
unsigned long i, addr_size;
|
||||||
struct unw_aux_info aux;
|
struct unw_aux_info aux;
|
||||||
|
|
||||||
|
if (!do_unwind)
|
||||||
|
return 1;
|
||||||
|
|
||||||
if (elf_header.e_machine != EM_IA_64)
|
if (elf_header.e_machine != EM_IA_64)
|
||||||
{
|
{
|
||||||
printf (_("\nThere are no unwind sections in this file.\n"));
|
printf (_("\nThere are no unwind sections in this file.\n"));
|
||||||
|
@ -3421,9 +3424,6 @@ process_unwind (file)
|
||||||
|
|
||||||
addr_size = is_32bit_elf ? 4 : 8;
|
addr_size = is_32bit_elf ? 4 : 8;
|
||||||
|
|
||||||
if (!do_unwind)
|
|
||||||
return 1;
|
|
||||||
|
|
||||||
for (i = 0, sec = section_headers; i < elf_header.e_shnum; ++i, ++sec)
|
for (i = 0, sec = section_headers; i < elf_header.e_shnum; ++i, ++sec)
|
||||||
{
|
{
|
||||||
if (sec->sh_type == SHT_SYMTAB)
|
if (sec->sh_type == SHT_SYMTAB)
|
||||||
|
|
Loading…
Reference in a new issue