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]

[patch] expr.c: Fix a comment typo.


Hi,

Attached is a patch to fix a comment typo.  Committed as obvious.

Kazu Hirata

2003-06-22  Kazu Hirata  <kazu@cs.umass.edu>

	* expr.c (emit_move_insn_1): Fix a comment typo.

Index: expr.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/expr.c,v
retrieving revision 1.553
diff -u -r1.553 expr.c
--- expr.c	19 Jun 2003 17:29:29 -0000	1.553
+++ expr.c	22 Jun 2003 16:36:31 -0000
@@ -3343,8 +3343,8 @@
       int stack = push_operand (x, GET_MODE (x));
 
 #ifdef PUSH_ROUNDING
-      /* In case we output to the stack, but the size is smaller machine can
-	 push exactly, we need to use move instructions.  */
+      /* In case we output to the stack, but the size is smaller than
+	 the machine can push exactly, we need to use move instructions.  */
       if (stack
 	  && (PUSH_ROUNDING (GET_MODE_SIZE (submode))
 	      != GET_MODE_SIZE (submode)))


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