From: Roger Sayle Date: Tue, 14 Feb 2006 16:26:16 +0000 (+0000) Subject: re PR middle-end/26279 (ICE in do_compare_rtx_and_jump) X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1dc5d842d486b07bcdfe7f13b7f7893133b80055;p=gcc.git re PR middle-end/26279 (ICE in do_compare_rtx_and_jump) PR middle-end/26279 PR middle-end/26280 PR middle-end/26283 * dojump.c (do_compare_rtx_and_jump): Handle multi-word LE. From-SVN: r110983 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9b2bf0ebf36..426a862b85c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +2006-02-14 Roger Sayle + + PR middle-end/26279 + PR middle-end/26280 + PR middle-end/26283 + * dojump.c (do_compare_rtx_and_jump): Handle multi-word LE. + 2006-02-14 Daniel Berlin Fix PR tree-optimization/26260 diff --git a/gcc/dojump.c b/gcc/dojump.c index da162d67680..4b0b5882036 100644 --- a/gcc/dojump.c +++ b/gcc/dojump.c @@ -921,6 +921,11 @@ do_compare_rtx_and_jump (rtx op0, rtx op1, enum rtx_code code, int unsignedp, if_false_label, if_true_label); break; + case LE: + do_jump_by_parts_greater_rtx (mode, 0, op0, op1, + if_true_label, if_false_label); + break; + case GT: do_jump_by_parts_greater_rtx (mode, 0, op0, op1, if_false_label, if_true_label);