This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[committed] Fix combine.c comment typo


Noticed while looking at the way combine handles conditions.
Committed as obvious.

Richard


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

Index: combine.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/combine.c,v
retrieving revision 1.440
diff -u -d -p -r1.440 combine.c
--- combine.c	1 Jul 2004 12:52:36 -0000	1.440
+++ combine.c	4 Jul 2004 22:21:54 -0000
@@ -9810,7 +9810,7 @@ simplify_comparison (enum rtx_code code,
 	  break;
 
 	case GEU:
-	  /* >= C is equivalent to < (C - 1).  */
+	  /* >= C is equivalent to > (C - 1).  */
 	  if (const_op > 1)
 	    {
 	      const_op -= 1;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]