This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: bug in flow.c
- To: Richard at dagenham dot pergamentum dot com, Henderson at dagenham dot pergamentum dot com, <rth at cygnus dot com>
- Subject: Re: bug in flow.c
- From: Andrew Phillips <atp at pergamentum dot com>
- Date: Tue, 22 Aug 2000 04:04:21 -0600 (MDT)
- Cc: gcc at gcc dot gnu dot org
> I agree. See if this patch fixes your bug.
It does indeed fix the problem,
Thanks,
Andy
--
Dr Andy Phillips atp@pergamentum.com
Pergamentum Solutions atp@coralcay.org
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> Index: flow.c
> ===================================================================
> RCS file: /cvs/gcc/egcs/gcc/flow.c,v
> retrieving revision 1.325
> diff -c -p -d -r1.325 flow.c
> *** flow.c 2000/08/15 17:31:29 1.325
> --- flow.c 2000/08/21 21:47:46
> *************** tidy_fallthru_edge (e, b, c)
> *** 2552,2558 ****
> NOTE_SOURCE_FILE (q) = 0;
> }
> else
> ! b->end = q = PREV_INSN (q);
> }
>
> /* Selectively unlink the sequence. */
> --- 2552,2560 ----
> NOTE_SOURCE_FILE (q) = 0;
> }
> else
> ! q = PREV_INSN (q);
> !
> ! b->end = q;
> }
>
> /* Selectively unlink the sequence. */
>