Commit 66415c8b by Richard Kenner

(simplify_comparison): Convert comparison to unsigned when stripping

off a ZERO_EXTEND.

From-SVN: r8034
parent 6dd49058
...@@ -8636,6 +8636,7 @@ simplify_comparison (code, pop0, pop1) ...@@ -8636,6 +8636,7 @@ simplify_comparison (code, pop0, pop1)
{ {
op0 = gen_lowpart_for_combine (tmode, inner_op0); op0 = gen_lowpart_for_combine (tmode, inner_op0);
op1 = gen_lowpart_for_combine (tmode, inner_op1); op1 = gen_lowpart_for_combine (tmode, inner_op1);
code = unsigned_condition (code);
changed = 1; changed = 1;
break; break;
} }
......
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