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: more ia32 bugs (unrolling)


On Mon, Jun 28, 1999 at 11:44:02PM +0200, Toon Moene wrote:
> There are several other places in loop.c where the return value of
> loop_emit_jump_insn_{after,before} isn't used.
> 
> Those are all OK ?

Yes.  This patch was in response to:

!             emit_jump_insn_before (tem, loop_end);
!
!             for (tem = PREV_INSN (loop_end);
!                  tem && GET_CODE (tem) != JUMP_INSN;
!                  tem = PREV_INSN (tem))
!               ;
!
!             if (tem)
!               JUMP_LABEL (tem) = XEXP (jump_label, 0);
---
!             loop_emit_jump_insn_before (tem, loop_end, XEXP (jump_label, 0));

from the first patch.


r~


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