From: Richard Henderson Date: Mon, 18 Sep 2000 18:39:03 +0000 (-0700) Subject: combine.c (simplify_comparison): Shift a NOT out of a single bit test. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9f8e169eb7a21b2f374df31dd32beef667676a13;p=gcc.git combine.c (simplify_comparison): Shift a NOT out of a single bit test. * combine.c (simplify_comparison): Shift a NOT out of a single bit test. From-SVN: r36508 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ec5c66370e6..047adf80d22 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2000-09-18 Richard Henderson + * combine.c (simplify_comparison): Shift a NOT out of a single + bit test. + * combine.c (if_then_else_cond): Canonicalize BImode true to STORE_FLAG_VALUE. * explow.c (trunc_int_for_mode): Likewise. diff --git a/gcc/combine.c b/gcc/combine.c index b8ac09b766a..a498b580d77 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -10811,6 +10811,21 @@ simplify_comparison (code, pop0, pop1) continue; } + /* Convert (ne (and (lshiftrt (not X)) 1) 0) to + (eq (and (lshiftrt X) 1) 0). */ + if (const_op == 0 && equality_comparison_p + && XEXP (op0, 1) == const1_rtx + && GET_CODE (XEXP (op0, 0)) == LSHIFTRT + && GET_CODE (XEXP (XEXP (op0, 0), 0)) == NOT) + { + op0 = simplify_and_const_int + (op0, mode, gen_rtx_combine (LSHIFTRT, mode, + XEXP (XEXP (XEXP (op0, 0), 0), 0), + XEXP (XEXP (op0, 0), 1)), + (HOST_WIDE_INT) 1); + code = (code == NE ? EQ : NE); + continue; + } break; case ASHIFT: