Commit 89f1c7f2 by Richard Stallman

(simplify_comparison): Rearrange conditional in SUBREG case.

From-SVN: r1886
parent 60d00117
......@@ -7544,10 +7544,12 @@ simplify_comparison (code, pop0, pop1)
break;
case SUBREG:
/* If the inner mode is smaller and we are extracting the low
part, we can treat the SUBREG as if it were a ZERO_EXTEND. */
if (! subreg_lowpart_p (op0)
|| GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (op0))) >= mode_width)
/* If the inner mode is narrower and we are extracting the low part,
we can treat the SUBREG as if it were a ZERO_EXTEND. */
if (subreg_lowpart_p (op0)
&& GET_MODE_BITSIZE (GET_MODE (SUBREG_REG (op0))) < mode_width)
/* Fall through */ ;
else
break;
/* ... fall through ... */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment