diff options
author | Richard Sandiford <rsandifo@redhat.com> | 2004-07-04 22:22:50 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2004-07-04 22:22:50 +0000 |
commit | b8ff6ca0621e015eadc50c6d5212be6c67530035 (patch) | |
tree | c1fbc3664ceea6094339a663334e7484cc642ed6 | |
parent | 6244b14e3997fcae97a44b3287eac59a42b0c2f1 (diff) | |
download | gcc-b8ff6ca0621e015eadc50c6d5212be6c67530035.zip gcc-b8ff6ca0621e015eadc50c6d5212be6c67530035.tar.gz gcc-b8ff6ca0621e015eadc50c6d5212be6c67530035.tar.bz2 |
* combine.c (simplify_comparison): Fix comment typo.
From-SVN: r84098
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/combine.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 665d5f1..52b973d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/combine.c b/gcc/combine.c index 533e4a8..9f322d5 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -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; |