This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: [patches] Re: gcc 3.1 ICE in make_label_edge on hppa1.1-hp-hpux10.20--bootstrap fails


> On Thu, Jul 19, 2001 at 06:26:46PM +0200, Jan Hubicka wrote:
> > Are you saying that all I need is to replace comment by
> > flow_delete_insn (region->resume); ?
> 
> Yes.  If there was something tricky here, I've forgotten what.
OK, assuming it passes testing?

Thu Jul 19 18:34:47 CEST 2001  Jan Hubicka  <jh@suse.cz>

	* except.c (connect_post_landing_pads): Delete the RESX insns.

Index: except.c
===================================================================
RCS file: /cvs/gcc/egcs/gcc/except.c,v
retrieving revision 1.173
diff -c -3 -p -r1.173 except.c
*** except.c	2001/07/16 20:54:43	1.173
--- except.c	2001/07/19 16:32:53
*************** connect_post_landing_pads ()
*** 1846,1853 ****
        seq = get_insns ();
        end_sequence ();
        emit_insns_before (seq, region->resume);
! 
!       /* Leave the RESX to be deleted by flow.  */
      }
  }
  
--- 1847,1853 ----
        seq = get_insns ();
        end_sequence ();
        emit_insns_before (seq, region->resume);
!       flow_delete_insn (region->resume);
      }
  }
  


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]