public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* fix typo
@ 2010-12-09 19:46 Mike Stump
  0 siblings, 0 replies; 5+ messages in thread
From: Mike Stump @ 2010-12-09 19:46 UTC (permalink / raw)
  To: GCC Patches

Thanks Jack...

Index: darwin.h
===================================================================
--- darwin.h	(revision 167610)
+++ darwin.h	(working copy)
@@ -195,7 +195,7 @@
 
 #define LINK_COMMAND_SPEC LINK_COMMAND_SPEC_A DSYMUTIL_SPEC
 
-/* Tell collet2 to run dsymutil for us as necessary.  */
+/* Tell collect2 to run dsymutil for us as necessary.  */
 #define COLLECT_RUN_DSYMUTIL 1
 
 /* We only want one instance of %G, since libSystem (Darwin's -lc) does not depend
Index: darwin9.h
===================================================================
--- darwin9.h	(revision 167610)
+++ darwin9.h	(working copy)
@@ -32,7 +32,7 @@
     %{.c|.cc|.C|.cpp|.cp|.c++|.cxx|.CPP|.m|.mm|.s: \
     %{g*:%{!gstabs*:%{!g0: -dsym}}}}}}}}}}}"
 
-/* Tell collet2 to run dsymutil for us as necessary.  */
+/* Tell collect2 to run dsymutil for us as necessary.  */
 #define COLLECT_RUN_DSYMUTIL 1
 
 /* libSystem contains unwind information for signal frames.  */

^ permalink raw reply	[flat|nested] 5+ messages in thread

* fix typo
@ 2011-04-23  7:35 Mike Stump
  0 siblings, 0 replies; 5+ messages in thread
From: Mike Stump @ 2011-04-23  7:35 UTC (permalink / raw)
  To: gcc-patches@gcc.gnu.org Patches

[-- Attachment #1: Type: text/plain, Size: 89 bytes --]

Applied an obvious fix to a typo.

	* gensupport.c (read_md_rtx): Fix typo in comment.



[-- Attachment #2: gen.diffs.txt --]
[-- Type: text/plain, Size: 755 bytes --]

2011-04-22  Mike Stump  <mikestump@comcast.net>

	* gensupport.c (read_md_rtx): Fix typo in comment.

Index: gensupport.c
===================================================================
--- gensupport.c	(revision 172889)
+++ gensupport.c	(working copy)
@@ -1304,7 +1304,7 @@ read_md_rtx (int *lineno, int *seqnr)
      their C test is provably always false).  If insn_elision is
      false, our caller needs to see all the patterns.  Note that the
      elided patterns are never counted by the sequence numbering; it
-     it is the caller's responsibility, when insn_elision is false, not
+     is the caller's responsibility, when insn_elision is false, not
      to use elided pattern numbers for anything.  */
   switch (GET_CODE (desc))
     {

^ permalink raw reply	[flat|nested] 5+ messages in thread

* fix typo
@ 2011-01-21  6:16 Mike Stump
  0 siblings, 0 replies; 5+ messages in thread
From: Mike Stump @ 2011-01-21  6:16 UTC (permalink / raw)
  To: GCC Patches

This just fixes a random typo I noticed...

Index: gcc/gcc/config/arm/arm1026ejs.md
===================================================================
--- gcc/gcc/config/arm/arm1026ejs.md	(revision 169009)
+++ gcc/gcc/config/arm/arm1026ejs.md	(working copy)
@@ -127,7 +127,7 @@
 ;; output (such as umull) make their results available in two cycles;
 ;; the least significant word is available before the most significant
 ;; word.  That fact is not modeled; instead, the instructions are
-;; described.as if the entire result was available at the end of the
+;; described as if the entire result was available at the end of the
 ;; cycle in which both words are available.
 
 ;; The "umull", "umlal", "smull", and "smlal" instructions all take

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Fix typo
@ 2005-06-28 23:09 Diego Novillo
  0 siblings, 0 replies; 5+ messages in thread
From: Diego Novillo @ 2005-06-28 23:09 UTC (permalink / raw)
  To: gcc-patches


	* tree-optimize.c (init_tree_optimization_passes): Fix typo.

Index: tree-optimize.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/tree-optimize.c,v
retrieving revision 2.114
diff -d -u -p -r2.114 tree-optimize.c
--- tree-optimize.c	28 Jun 2005 02:20:29 -0000	2.114
+++ tree-optimize.c	28 Jun 2005 23:06:42 -0000
@@ -434,7 +434,7 @@ init_tree_optimization_passes (void)
   struct tree_opt_pass **p;
 
 #define NEXT_PASS(PASS)  (p = next_pass_1 (p, &PASS))
-  /* Intraprocedural optimization passes.  */
+  /* Interprocedural optimization passes.  */
   p = &all_ipa_passes;
   NEXT_PASS (pass_early_ipa_inline);
   NEXT_PASS (pass_early_local_passes);

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Fix typo
@ 2001-09-15  4:05 Neil Booth
  0 siblings, 0 replies; 5+ messages in thread
From: Neil Booth @ 2001-09-15  4:05 UTC (permalink / raw)
  To: gcc-patches

	* scan-decls.c (scan_decls): Fix typo.

Index: scan-decls.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/scan-decls.c,v
retrieving revision 1.27
diff -u -p -r1.27 scan-decls.c
--- scan-decls.c	2001/09/14 22:04:46	1.27
+++ scan-decls.c	2001/09/15 11:03:33
@@ -170,7 +170,7 @@ scan_decls (pfile, argc, argv)
 			   || token.type == CPP_ELLIPSIS)
 		    have_arg_list = 1;
 		}
-	      recognized_function (&prev_id, token->line,
+	      recognized_function (&prev_id, token.line,
 				   (saw_inline ? 'I'
 				    : in_extern_C_brace || current_extern_C
 				    ? 'F' : 'f'), have_arg_list);

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-04-23  0:34 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-12-09 19:46 fix typo Mike Stump
  -- strict thread matches above, loose matches on Subject: below --
2011-04-23  7:35 Mike Stump
2011-01-21  6:16 Mike Stump
2005-06-28 23:09 Fix typo Diego Novillo
2001-09-15  4:05 Neil Booth

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).