Commit b8ff6ca0 by Richard Sandiford Committed by Richard Sandiford

* combine.c (simplify_comparison): Fix comment typo.

From-SVN: r84098
parent 6244b14e
2004-07-04 Richard Sandiford <rsandifo@redhat.com>
* combine.c (simplify_comparison): Fix comment typo.
2004-07-04 Eric Botcazou <ebotcazou@libertysurf.fr>
* config/sparc/sparc.c (SIBCALL_SLOT_EMPTY_P): Rename
......
......@@ -9810,7 +9810,7 @@ simplify_comparison (enum rtx_code code, rtx *pop0, rtx *pop1)
break;
case GEU:
/* >= C is equivalent to < (C - 1). */
/* >= C is equivalent to > (C - 1). */
if (const_op > 1)
{
const_op -= 1;
......
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