This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: Patch for purge_addressof_1()
- To: Graham <grahams at rcp dot co dot uk>
- Subject: Re: Patch for purge_addressof_1()
- From: Jeffrey A Law <law at cygnus dot com>
- Date: Mon, 19 Oct 1998 18:16:34 -0600
- cc: egcs-patches at cygnus dot com
- Reply-To: law at cygnus dot com
In message <362B9D92.4E64@rcp.co.uk>you write:
> Jeff
>
> The affected piece of code used to be
>
> insns = get_insns();
> end_sequence()
> emit_insns_before (insns, insn);
>
> but was recently changed to
>
> insn = get_sequence ();
> end_sequence ();
> emit_insns_before (insns, insn);
>
> I will investigate further and confirm it is a SEQUENCE.
In that case, I suspect your change is probably correct. I'll go ahead
and install it.
jeff