frame.c (add_fdes, count_fdes): Go back to checking pc_begin for linked once FDEs.
authorJason Merrill <jason@yorick.cygnus.com>
Fri, 7 Nov 1997 18:57:39 +0000 (18:57 +0000)
committerJason Merrill <jason@gcc.gnu.org>
Fri, 7 Nov 1997 18:57:39 +0000 (13:57 -0500)
* frame.c (add_fdes, count_fdes): Go back to checking pc_begin for
  linked once FDEs.

From-SVN: r16359

gcc/ChangeLog
gcc/frame.c

index 4ed25d50079bf76580ddd2cdd62db72828c57680..2483bfbc86533671f50c982b0fdcfaf6aee617f9 100644 (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
index acc78a2381eb9faec733a3262a8bea65eea49cbe..1fb29e44cfd3a1de01178ff2033c6053f67f8788 100644 (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);