Commit d4f1c1fa by Richard Henderson Committed by Richard Henderson

simplify-rtx.c (simplify_relational_operation): Sign extend low words before…

simplify-rtx.c (simplify_relational_operation): Sign extend low words before sign extending to high words.

        * simplify-rtx.c (simplify_relational_operation): Sign extend
        low words before sign extending to high words.

From-SVN: r37061
parent 47a53f53
2000-10-25 Richard Henderson <rth@redhat.com>
* simplify-rtx.c (simplify_relational_operation): Sign extend
low words before sign extending to high words.
2000-10-25 Nick Clifton <nickc@redhat.com>
* config/mcore/mcore.c: Include config.h before system.h.
......
......@@ -1812,9 +1812,6 @@ simplify_relational_operation (code, mode, op0, op1)
/* If WIDTH is nonzero and smaller than HOST_BITS_PER_WIDE_INT,
we have to sign or zero-extend the values. */
if (width != 0 && width <= HOST_BITS_PER_WIDE_INT)
h0u = h1u = 0, h0s = HWI_SIGN_EXTEND (l0s), h1s = HWI_SIGN_EXTEND (l1s);
if (width != 0 && width < HOST_BITS_PER_WIDE_INT)
{
l0u &= ((HOST_WIDE_INT) 1 << width) - 1;
......@@ -1826,6 +1823,8 @@ simplify_relational_operation (code, mode, op0, op1)
if (l1s & ((HOST_WIDE_INT) 1 << (width - 1)))
l1s |= ((HOST_WIDE_INT) (-1) << width);
}
if (width != 0 && width <= HOST_BITS_PER_WIDE_INT)
h0u = h1u = 0, h0s = HWI_SIGN_EXTEND (l0s), h1s = HWI_SIGN_EXTEND (l1s);
equal = (h0u == h1u && l0u == l1u);
op0lt = (h0s < h1s || (h0s == h1s && l0u < l1u));
......
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