frame.c (add_fdes, count_fdes): Go back to checking pc_begin for linked once FDEs.

* frame.c (add_fdes, count_fdes): Go back to checking pc_begin for
 	linked once FDEs.

From-SVN: r16359
This commit is contained in:
Jason Merrill 1997-11-07 18:57:39 +00:00 committed by Jason Merrill
parent 29088d20b7
commit 9799193348
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Fri Nov 7 10:22:24 1997 Jason Merrill <jason@yorick.cygnus.com>
* frame.c (add_fdes, count_fdes): Go back to checking pc_begin for
linked once FDEs.
Wed Nov 5 14:26:05 1997 Jeffrey A Law (law@cygnus.com)
* alias.c (find_base_value): Only return the known base value for

View File

@ -221,7 +221,7 @@ count_fdes (fde *this_fde)
for (count = 0; this_fde->length != 0; this_fde = next_fde (this_fde))
{
/* Skip CIEs and linked once FDE entries. */
if (this_fde->CIE_delta == 0 || this_fde->pc_range == 0)
if (this_fde->CIE_delta == 0 || this_fde->pc_begin == 0)
continue;
++count;
@ -241,7 +241,7 @@ add_fdes (fde *this_fde, fde **array, size_t *i_ptr,
for (; this_fde->length != 0; this_fde = next_fde (this_fde))
{
/* Skip CIEs and linked once FDE entries. */
if (this_fde->CIE_delta == 0 || this_fde->pc_range == 0)
if (this_fde->CIE_delta == 0 || this_fde->pc_begin == 0)
continue;
fde_insert (array, i++, this_fde);