* combine.c (simplify_comparison): Fix comment typo.
authorrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 4 Jul 2004 22:22:50 +0000 (22:22 +0000)
committerrsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 4 Jul 2004 22:22:50 +0000 (22:22 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84098 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/combine.c

index 665d5f1..52b973d 100644 (file)
@@ -1,3 +1,7 @@
+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
index 533e4a8..9f322d5 100644 (file)
@@ -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;