From: Richard Sandiford Date: Sun, 4 Jul 2004 22:22:50 +0000 (+0000) Subject: * combine.c (simplify_comparison): Fix comment typo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b8ff6ca0621e015eadc50c6d5212be6c67530035;p=gcc.git * combine.c (simplify_comparison): Fix comment typo. From-SVN: r84098 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 665d5f12e09..52b973d49d5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-07-04 Richard Sandiford + + * combine.c (simplify_comparison): Fix comment typo. + 2004-07-04 Eric Botcazou * config/sparc/sparc.c (SIBCALL_SLOT_EMPTY_P): Rename diff --git a/gcc/combine.c b/gcc/combine.c index 533e4a806a2..9f322d5c831 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;