From b8ff6ca0621e015eadc50c6d5212be6c67530035 Mon Sep 17 00:00:00 2001 From: Richard Sandiford Date: Sun, 4 Jul 2004 22:22:50 +0000 Subject: [PATCH] * combine.c (simplify_comparison): Fix comment typo. From-SVN: r84098 --- gcc/ChangeLog | 4 ++++ gcc/combine.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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; -- 2.30.2