This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB 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]

[applied obvious sim patch] depreciated -> deprecated


noticed while looking at igen command line flags, couldn't stop myself
from fixing it...

committed as obvious.


cgd
===================================================================
[ common/ChangeLog ]
2002-05-01  Chris Demetriou  <cgd@broadcom.com>

	* callback.c: Use 'deprecated' rather than 'depreciated.'

[ igen/ChangeLog ]
2002-05-01  Chris Demetriou  <cgd@broadcom.com>

	* igen.c: Use 'deprecated' rather than 'depreciated.'

[ mips/ChangeLog ]
2002-05-01  Chris Demetriou  <cgd@broadcom.com>

	* interp.c: Use 'deprecated' rather than 'depreciated.'
	* sim-main.h: Likewise.

Index: common/callback.c
===================================================================
RCS file: /cvs/src/src/sim/common/callback.c,v
retrieving revision 1.3
diff -u -p -r1.3 callback.c
--- common/callback.c	10 Feb 2002 23:11:37 -0000	1.3
+++ common/callback.c	1 May 2002 23:23:14 -0000
@@ -435,7 +435,7 @@ os_init (p)
   return 1;
 }
 
-/* DEPRECIATED */
+/* DEPRECATED */
 
 /* VARARGS */
 static void
Index: igen/igen.c
===================================================================
RCS file: /cvs/src/src/sim/igen/igen.c,v
retrieving revision 1.2
diff -u -p -r1.2 igen.c
--- igen/igen.c	8 Mar 2002 00:36:32 -0000	1.2
+++ igen/igen.c	1 May 2002 23:23:14 -0000
@@ -1037,7 +1037,7 @@ main (int argc,
       printf ("Config options:\n");
       printf ("\n");
       printf ("  -B <bit-size>\n");
-      printf ("\t Set the number of bits in an instruction (depreciated).\n");
+      printf ("\t Set the number of bits in an instruction (deprecated).\n");
       printf ("\t This option can now be set directly in the instruction table.\n");
       printf ("\n");
       printf ("  -D <data-structure>\n");
@@ -1049,7 +1049,7 @@ main (int argc,
       printf ("\t a flag not listed in the <filter-list>.\n");
       printf ("\n");
       printf ("  -H <high-bit>\n");
-      printf ("\t Set the number of the high (most significant) instruction bit (depreciated).\n");
+      printf ("\t Set the number of the high (most significant) instruction bit (deprecated).\n");
       printf ("\t This option can now be set directly in the instruction table.\n");
       printf ("\n");
       printf ("  -I <directory>\n");
@@ -1120,7 +1120,7 @@ main (int argc,
       printf ("\t trace-rule-expansion   - report each instruction as it is expanded (before insertion into a decode table)\n");
       printf ("\t trace-all              - enable all trace options\n");
       printf ("\n");
-      printf ("\t field-widths           - instruction formats specify widths (depreciated)\n");
+      printf ("\t field-widths           - instruction formats specify widths (deprecated)\n");
       printf ("\t                          By default, an instruction format specifies bit\n");
       printf ("\t                          positions\n");
       printf ("\t                          This option can now be set directly in the\n");
@@ -1130,7 +1130,7 @@ main (int argc,
       printf ("\n");
       printf ("Input options:\n");
       printf ("\n");
-      printf ("  -k <cache-rules> (depreciated)\n");
+      printf ("  -k <cache-rules> (deprecated)\n");
       printf ("  -o <decode-rules>\n");
       printf ("  -i <instruction-table>\n");
       printf ("\n");
Index: mips/interp.c
===================================================================
RCS file: /cvs/src/src/sim/mips/interp.c,v
retrieving revision 1.12
diff -u -p -r1.12 interp.c
--- mips/interp.c	1 May 2002 17:26:14 -0000	1.12
+++ mips/interp.c	1 May 2002 23:23:14 -0000
@@ -1238,7 +1238,7 @@ sim_monitor (SIM_DESC sd,
 	sim_write (sd, A0 + 0, (char *)&value, 4);
 	sim_write (sd, A0 + 4, (char *)&zero, 4);
 	sim_write (sd, A0 + 8, (char *)&zero, 4);
-	/* sim_io_eprintf (sd, "sim: get_mem_info() depreciated\n"); */
+	/* sim_io_eprintf (sd, "sim: get_mem_info() deprecated\n"); */
 	break;
       }
     
Index: mips/sim-main.h
===================================================================
RCS file: /cvs/src/src/sim/mips/sim-main.h,v
retrieving revision 1.12
diff -u -p -r1.12 sim-main.h
--- mips/sim-main.h	1 May 2002 17:26:14 -0000	1.12
+++ mips/sim-main.h	1 May 2002 23:23:14 -0000
@@ -43,7 +43,7 @@ typedef address_word sim_cia;
 #include "sim-base.h"
 
 
-/* Depreciated macros and types for manipulating 64bit values.  Use
+/* Deprecated macros and types for manipulating 64bit values.  Use
    ../common/sim-bits.h and ../common/sim-endian.h macros instead. */
 
 typedef signed64 word64;


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