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] m68k.c: Fix comment typos.


Hi,

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

Kazu Hirata

2003-10-11  Kazu Hirata  <kazu@cs.umass.edu>

	* config/m68k/m68k.c: Fix comment typos.

Index: m68k.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/m68k/m68k.c,v
retrieving revision 1.107
diff -u -4 -r1.107 m68k.c
--- m68k.c	11 Oct 2003 04:53:13 -0000	1.107
+++ m68k.c	11 Oct 2003 06:23:46 -0000
@@ -416,9 +416,9 @@
   /* Never need to save registers that aren't touched.  */
   if (!regs_ever_live[regno])
     return false;
 
-  /* Otherwise save everthing that isn't call-clobbered.  */
+  /* Otherwise save everything that isn't call-clobbered.  */
   return !call_used_regs[regno];
 }
 
 /* This function generates the assembly code for function entry.
@@ -1182,9 +1182,9 @@
   const char *out;
 
   if (!(GET_CODE (dest) == MEM && GET_CODE (XEXP (dest, 0)) == SYMBOL_REF))
     out = "jsr %0";
-      /* We output a BSR instruction if we've using -fpic or we're building for
+      /* We output a BSR instruction if we're using -fpic or we're building for
        * a target that supports long branches.  If we're building -fPIC on the
        * 68000, 68010 or ColdFire we generate one of two sequences:
        * a shorter one that uses a GOT entry or a longer one that doesn't.
        * We'll use the -Os command-line flag to decide which to generate.
@@ -1655,9 +1655,9 @@
   else if (GET_CODE (orig) == CONST)
     {
       rtx base;
 
-      /* Make sure this is CONST has not already been legitimized */
+      /* Make sure this has not already been legitimized.  */
       if (GET_CODE (XEXP (orig, 0)) == PLUS
 	  && XEXP (XEXP (orig, 0), 0) == pic_offset_table_rtx)
 	return orig;
 


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