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] gcc/*.[ch]: Fix comment formatting.


Hi,

Attached is a patch to fix comment formatting.

Bootstrapped on i686-pc-linux-gnu.  Committed as obvious.

Kazu Hirata

2003-12-21  Kazu Hirata  <kazu@cs.umass.edu>

	* alias.c: Fix comment formatting.
	* alloc-pool.c: Likewise.
	* bitmap.c: Likewise.
	* bitmap.h: Likewise.
	* bt-load.c: Likewise.
	* c-common.c: Likewise.
	* c-common.h: Likewise.
	* c-decl.c: Likewise.
	* c-opts.c: Likewise.
	* c-pretty-print.c: Likewise.
	* caller-save.c: Likewise.
	* cfghooks.h: Likewise.
	* cgraph.c: Likewise.
	* collect2.c: Likewise.
	* cppfiles.c: Likewise.
	* cpplib.h: Likewise.
	* dwarf2out.c: Likewise.
	* dwarfout.c: Likewise.
	* emit-rtl.c: Likewise.
	* final.c: Likewise.
	* function.c: Likewise.
	* gcov.c: Likewise.
	* gcse.c: Likewise.
	* genemit.c: Likewise.
	* ggc.h: Likewise.
	* haifa-sched.c: Likewise.
	* ifcvt.c: Likewise.
	* libgcc2.h: Likewise.
	* loop.c: Likewise.
	* predict.h: Likewise.
	* unwind-libunwind.c: Likewise.
	* varasm.c: Likewise.

Index: alias.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/alias.c,v
retrieving revision 1.203
diff -u -r1.203 alias.c
--- alias.c	2 Oct 2003 17:43:57 -0000	1.203
+++ alias.c	21 Dec 2003 08:36:40 -0000
@@ -692,7 +692,7 @@
     case RECORD_TYPE:
     case UNION_TYPE:
     case QUAL_UNION_TYPE:
-      /* Recursively record aliases for the base classes, if there are any */
+      /* Recursively record aliases for the base classes, if there are any.  */
       if (TYPE_BINFO (type) != NULL && TYPE_BINFO_BASETYPES (type) != NULL)
 	{
 	  int i;
Index: alloc-pool.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/alloc-pool.c,v
retrieving revision 1.8
diff -u -r1.8 alloc-pool.c
--- alloc-pool.c	19 Jul 2003 14:46:59 -0000	1.8
+++ alloc-pool.c	21 Dec 2003 08:36:40 -0000
@@ -112,7 +112,7 @@
   pool->elt_size = size;
   pool->elts_per_block = num;
 
-  /* List header size should be a multiple of 8 */
+  /* List header size should be a multiple of 8.  */
   header_size = align_eight (sizeof (struct alloc_pool_list_def));
 
   pool->block_size = (size * num) + header_size;
Index: bitmap.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/bitmap.c,v
retrieving revision 1.46
diff -u -r1.46 bitmap.c
--- bitmap.c	19 Jul 2003 14:46:59 -0000	1.46
+++ bitmap.c	21 Dec 2003 08:36:40 -0000
@@ -348,7 +348,7 @@
       unsigned word_num = bit / BITMAP_WORD_BITS % BITMAP_ELEMENT_WORDS;
       ptr->bits[word_num] &= ~ (((BITMAP_WORD) 1) << bit_num);
 
-      /* If we cleared the entire word, free up the element */
+      /* If we cleared the entire word, free up the element.  */
       if (bitmap_element_zerop (ptr))
 	bitmap_element_free (head, ptr);
     }
Index: bitmap.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/bitmap.h,v
retrieving revision 1.32
diff -u -r1.32 bitmap.h
--- bitmap.h	19 Jul 2003 14:46:59 -0000	1.32
+++ bitmap.h	21 Dec 2003 08:36:40 -0000
@@ -305,7 +305,7 @@
 									\
   for (; ptr1_ != 0 ; ptr1_ = ptr1_->next)				\
     {									\
-      /* Advance BITMAP2 to the equivalent link */			\
+      /* Advance BITMAP2 to the equivalent link.  */			\
       while (ptr2_ != 0 && ptr2_->indx < ptr1_->indx)			\
 	ptr2_ = ptr2_->next;						\
 									\
Index: bt-load.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/bt-load.c,v
retrieving revision 2.10
diff -u -r2.10 bt-load.c
--- bt-load.c	11 Dec 2003 00:20:36 -0000	2.10
+++ bt-load.c	21 Dec 2003 08:36:41 -0000
@@ -155,7 +155,7 @@
    migrating branch target load instructions.  */
 static struct obstack migrate_btrl_obstack;
 
-/* Basic block dominator information used when migrating PT instructions */
+/* Basic block dominator information used when migrating PT instructions.  */
 static dominance_info dom;
 
 /* Array indexed by basic block number, giving the set of registers
Index: c-common.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/c-common.c,v
retrieving revision 1.468
diff -u -r1.468 c-common.c
--- c-common.c	15 Dec 2003 06:28:13 -0000	1.468
+++ c-common.c	21 Dec 2003 08:36:44 -0000
@@ -386,7 +386,7 @@
 
 int flag_isoc99;
 
-/* Nonzero means that we have builtin functions, and main is an int */
+/* Nonzero means that we have builtin functions, and main is an int.  */
 
 int flag_hosted = 1;
 
Index: c-common.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/c-common.h,v
retrieving revision 1.212
diff -u -r1.212 c-common.h
--- c-common.h	16 Dec 2003 16:09:03 -0000	1.212
+++ c-common.h	21 Dec 2003 08:36:45 -0000
@@ -553,7 +553,7 @@
 
 extern int flag_isoc99;
 
-/* Nonzero means that we have builtin functions, and main is an int */
+/* Nonzero means that we have builtin functions, and main is an int.  */
 
 extern int flag_hosted;
 
Index: c-decl.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/c-decl.c,v
retrieving revision 1.461
diff -u -r1.461 c-decl.c
--- c-decl.c	18 Dec 2003 21:03:14 -0000	1.461
+++ c-decl.c	21 Dec 2003 08:36:48 -0000
@@ -125,7 +125,7 @@
 
 static GTY(()) tree c_scope_stmt_stack;
 
-/* State saving variables. */
+/* State saving variables.  */
 int c_in_iteration_stmt;
 int c_in_case_stmt;
 
@@ -541,7 +541,7 @@
   tree decl;
   tree p;
 
-  /* The following line does not use |= due to a bug in HP's C compiler */
+  /* The following line does not use |= due to a bug in HP's C compiler.  */
   scope->function_body = scope->function_body | functionbody;
 
   if (keep == KEEP_MAYBE)
@@ -1335,7 +1335,7 @@
 	 Currently, it can only be defined in the prototype.  */
       COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
 
-      /* If either declaration has a nondefault visibility, use it. */
+      /* If either declaration has a nondefault visibility, use it.  */
       if (DECL_VISIBILITY (olddecl) != VISIBILITY_DEFAULT)
 	{
 	  if (DECL_VISIBILITY (newdecl) != VISIBILITY_DEFAULT
@@ -1425,7 +1425,7 @@
 	{
 	  if (TREE_USED (olddecl)
 	      /* In unit-at-a-time mode we never inline re-defined extern
-	         inline functions. */
+	         inline functions.  */
 	      && !flag_unit_at_a_time)
 	    (*debug_hooks->outlining_inline_function) (olddecl);
 
@@ -2775,7 +2775,7 @@
 		    || TREE_CODE (decl) == FIELD_DECL))
     objc_check_decl (decl);
 
-  /* Deduce size of array from initialization, if not already known */
+  /* Deduce size of array from initialization, if not already known.  */
   if (TREE_CODE (type) == ARRAY_TYPE
       && TYPE_DOMAIN (type) == 0
       && TREE_CODE (decl) != TYPE_DECL)
@@ -5089,7 +5089,7 @@
 
   layout_type (t);
 
-  /* Delete all zero-width bit-fields from the fieldlist */
+  /* Delete all zero-width bit-fields from the fieldlist.  */
   {
     tree *fieldlistp = &fieldlist;
     while (*fieldlistp)
@@ -5105,7 +5105,7 @@
   TYPE_FIELDS (t) = fieldlist;
 
   /* If there are lots of fields, sort so we can look through them fast.
-    We arbitrarily consider 16 or more elts to be "a lot".  */
+     We arbitrarily consider 16 or more elts to be "a lot".  */
 
   {
     int len = 0;
Index: c-opts.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/c-opts.c,v
retrieving revision 1.94
diff -u -r1.94 c-opts.c
--- c-opts.c	5 Nov 2003 21:09:03 -0000	1.94
+++ c-opts.c	21 Dec 2003 08:36:48 -0000
@@ -1441,7 +1441,7 @@
 	  if (opt->code == OPT_imacros
 	      && cpp_push_include (parse_in, opt->arg))
 	    {
-	      /* Disable push_command_line_include callback for now. */
+	      /* Disable push_command_line_include callback for now.  */
 	      include_cursor = deferred_count + 1;
 	      cpp_scan_nooutput (parse_in);
 	    }
Index: c-pretty-print.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/c-pretty-print.c,v
retrieving revision 1.33
diff -u -r1.33 c-pretty-print.c
--- c-pretty-print.c	21 Nov 2003 06:52:22 -0000	1.33
+++ c-pretty-print.c	21 Dec 2003 08:36:49 -0000
@@ -1106,7 +1106,7 @@
     }
 }
 
-/* Pretty-print a brace-enclosed initializer-list.   */
+/* Pretty-print a brace-enclosed initializer-list.  */
 
 static void
 pp_c_brace_enclosed_initializer_list (c_pretty_printer *pp, tree l)
@@ -1246,7 +1246,7 @@
     }
 }
 
-/* Print out an expression-list; E is expected to be a TREE_LIST  */
+/* Print out an expression-list; E is expected to be a TREE_LIST.  */
 
 void
 pp_c_expression_list (c_pretty_printer *pp, tree e)
@@ -1259,7 +1259,7 @@
     }
 }
 
-/* Print out an expression-list in parens, as in a function call.   */
+/* Print out an expression-list in parens, as in a function call.  */
 
 void
 pp_c_call_argument_list (c_pretty_printer *pp, tree t)
Index: caller-save.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/caller-save.c,v
retrieving revision 1.59
diff -u -r1.59 caller-save.c
--- caller-save.c	17 Dec 2003 18:20:44 -0000	1.59
+++ caller-save.c	21 Dec 2003 08:36:49 -0000
@@ -699,7 +699,7 @@
       n_regs_saved--;
     }
 
-  /* Tell our callers how many extra registers we saved/restored */
+  /* Tell our callers how many extra registers we saved/restored.  */
   return numregs - 1;
 }
 
@@ -771,7 +771,7 @@
       n_regs_saved++;
     }
 
-  /* Tell our callers how many extra registers we saved/restored */
+  /* Tell our callers how many extra registers we saved/restored.  */
   return numregs - 1;
 }
 
Index: cfghooks.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/cfghooks.h,v
retrieving revision 1.7
diff -u -r1.7 cfghooks.h
--- cfghooks.h	6 Jul 2003 18:59:38 -0000	1.7
+++ cfghooks.h	21 Dec 2003 08:36:50 -0000
@@ -31,7 +31,7 @@
 
   /* Basic CFG manipulation.  */
 
-  /* Return new basic block */
+  /* Return new basic block.  */
   basic_block (*create_basic_block) (void *head, void *end, basic_block after);
 
   /* Redirect edge E to the given basic block B and update underlying program
Index: cgraph.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/cgraph.c,v
retrieving revision 1.37
diff -u -r1.37 cgraph.c
--- cgraph.c	18 Nov 2003 14:52:28 -0000	1.37
+++ cgraph.c	21 Dec 2003 08:36:50 -0000
@@ -268,7 +268,7 @@
   cgraph_mark_reachable_node (node);
 }
 
-/* Record call from CALLER to CALLEE  */
+/* Record call from CALLER to CALLEE.  */
 
 struct cgraph_edge *
 cgraph_record_call (tree caller, tree callee)
Index: collect2.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/collect2.c,v
retrieving revision 1.157
diff -u -r1.157 collect2.c
--- collect2.c	17 Dec 2003 18:14:45 -0000	1.157
+++ collect2.c	21 Dec 2003 08:36:51 -0000
@@ -1432,10 +1432,10 @@
 
   fork_execute ("gcc",  c_argv);
 #ifdef COLLECT_EXPORT_LIST
-  /* On AIX we must call tlink because of possible templates resolution */
+  /* On AIX we must call tlink because of possible templates resolution.  */
   do_tlink (ld2_argv, object_lst);
 #else
-  /* Otherwise, simply call ld because tlink is already done */
+  /* Otherwise, simply call ld because tlink is already done.  */
   fork_execute ("ld", ld2_argv);
 
   /* Let scan_prog_file do any final mods (OSF/rose needs this for
Index: cppfiles.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/cppfiles.c,v
retrieving revision 1.196
diff -u -r1.196 cppfiles.c
--- cppfiles.c	5 Dec 2003 22:50:52 -0000	1.196
+++ cppfiles.c	21 Dec 2003 08:36:52 -0000
@@ -862,7 +862,7 @@
   return entry != NULL;
 }
 
-/* Calculate the hash value of a file hash entry P. */
+/* Calculate the hash value of a file hash entry P.  */
 
 static hashval_t
 file_hash_hash (const void *p)
Index: cpplib.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/cpplib.h,v
retrieving revision 1.269
diff -u -r1.269 cpplib.h
--- cpplib.h	1 Nov 2003 22:56:52 -0000	1.269
+++ cpplib.h	21 Dec 2003 08:36:52 -0000
@@ -219,7 +219,7 @@
   /* Nonzero means use extra default include directories for C++.  */
   unsigned char cplusplus;
 
-  /* Nonzero means handle cplusplus style comments */
+  /* Nonzero means handle cplusplus style comments.  */
   unsigned char cplusplus_comments;
 
   /* Nonzero means define __OBJC__, treat @ as a special token, and
Index: dwarf2out.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/dwarf2out.c,v
retrieving revision 1.466
diff -u -r1.466 dwarf2out.c
--- dwarf2out.c	8 Dec 2003 20:31:05 -0000	1.466
+++ dwarf2out.c	21 Dec 2003 08:36:58 -0000
@@ -4673,7 +4673,7 @@
 }
 
 /* Add an AT_specification attribute to a DIE, and also make the back
-   pointer from the specification to the definition. */
+   pointer from the specification to the definition.  */
 
 static inline void
 add_AT_specification (dw_die_ref die, dw_die_ref targ_die)
@@ -11848,7 +11848,7 @@
 {
   tree context = DECL_P (thing) ? DECL_CONTEXT (thing) : TYPE_CONTEXT (thing);
   if (context && TREE_CODE (context) == NAMESPACE_DECL)
-    /* Force out the namespace. */
+    /* Force out the namespace.  */
     context_die = force_namespace_die (context);
 
   return context_die;
@@ -11879,7 +11879,7 @@
     }
 }
 
-/* Generate a DIE for a namespace or namespace alias */
+/* Generate a DIE for a namespace or namespace alias.  */
 
 static void
 gen_namespace_die (tree decl)
@@ -11887,10 +11887,10 @@
   dw_die_ref context_die = setup_namespace_context (decl, comp_unit_die);
 
   /* Namespace aliases have a DECL_ABSTRACT_ORIGIN of the namespace
-     they are an alias of.*/
+     they are an alias of. */
   if (DECL_ABSTRACT_ORIGIN (decl) == NULL)
     {
-      /* Output a real namespace */
+      /* Output a real namespace.  */
       dw_die_ref namespace_die
 	= new_die (DW_TAG_namespace, context_die, decl);
       add_name_and_src_coords_attributes (namespace_die, decl);
@@ -11898,13 +11898,13 @@
     }
   else
     {
-      /* Output a namespace alias */
+      /* Output a namespace alias.  */
 
-      /* Force out the namespace we are an alias of, if necessary */
+      /* Force out the namespace we are an alias of, if necessary.  */
       dw_die_ref origin_die
 	= force_namespace_die (DECL_ABSTRACT_ORIGIN (decl));
 
-      /* Now create the namespace alias DIE. */
+      /* Now create the namespace alias DIE.  */
       dw_die_ref namespace_die
 	= new_die (DW_TAG_imported_declaration, context_die, decl);
       add_name_and_src_coords_attributes (namespace_die, decl);
@@ -12670,7 +12670,7 @@
       prune_unused_types_walk_attribs (die);
 
       /* If this node is a specification,
-         also mark the definition, if it exists. */
+         also mark the definition, if it exists.  */
       if (get_AT_flag (die, DW_AT_declaration) && die->die_definition)
         prune_unused_types_mark (die->die_definition, 1);
     }
Index: dwarfout.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/dwarfout.c,v
retrieving revision 1.140
diff -u -r1.140 dwarfout.c
--- dwarfout.c	19 Dec 2003 23:27:04 -0000	1.140
+++ dwarfout.c	21 Dec 2003 08:37:02 -0000
@@ -2956,7 +2956,7 @@
 		  FMT_CODE (1, TREE_CODE (lower) == INTEGER_CST,
 			    upper && TREE_CODE (upper) == INTEGER_CST));
 
-	  /* Output the index type for this dimension.	*/
+	  /* Output the index type for this dimension.  */
 	  ASM_OUTPUT_DWARF_FUND_TYPE (asm_out_file,
 				      fundamental_type_code (domain));
 
@@ -2985,7 +2985,7 @@
 
 	  ASM_OUTPUT_DWARF_FUND_TYPE (asm_out_file, FT_integer);
 
-	  /* Output the (assumed) lower bound (constant) value.	 */
+	  /* Output the (assumed) lower bound (constant) value.  */
 
 	  ASM_OUTPUT_DWARF_DATA4 (asm_out_file, 0);
 
@@ -4282,7 +4282,7 @@
 
   ASM_OUTPUT_LABEL (asm_out_file, begin_label);
 
-  /* Write the DIE-length word.	 */
+  /* Write the DIE-length word.  */
 
   ASM_OUTPUT_DWARF_DELTA4 (asm_out_file, end_label, begin_label);
 
@@ -4291,7 +4291,7 @@
   next_unused_dienum++;
   die_specific_output_function (param);
 
-  /* Write a label which will act as the name for the end of this DIE.	*/
+  /* Write a label which will act as the name for the end of this DIE.  */
 
   ASM_OUTPUT_LABEL (asm_out_file, end_label);
 }
@@ -4310,7 +4310,7 @@
 
   ASM_OUTPUT_LABEL (asm_out_file, begin_label);
 
-  /* Write the DIE-length word.	 */
+  /* Write the DIE-length word.  */
 
   ASM_OUTPUT_DWARF_DATA4 (asm_out_file, 4);
 
Index: emit-rtl.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/emit-rtl.c,v
retrieving revision 1.360
diff -u -r1.360 emit-rtl.c
--- emit-rtl.c	18 Dec 2003 05:41:44 -0000	1.360
+++ emit-rtl.c	21 Dec 2003 08:37:04 -0000
@@ -971,7 +971,7 @@
 	REGNO_POINTER_ALIGN (REGNO (reg)) = align;
     }
   else if (align && align < REGNO_POINTER_ALIGN (REGNO (reg)))
-    /* We can no-longer be sure just how aligned this pointer is */
+    /* We can no-longer be sure just how aligned this pointer is.  */
     REGNO_POINTER_ALIGN (REGNO (reg)) = align;
 }
 
@@ -2551,7 +2551,7 @@
     }
   RTX_FLAG (x, used) = 1;
 
-  /* Now scan the subexpressions recursively. */
+  /* Now scan the subexpressions recursively.  */
 
   format_ptr = GET_RTX_FORMAT (code);
 
@@ -2867,11 +2867,12 @@
 	      int j;
 	      int len = XVECLEN (x, i);
               
-              /* Copy the vector iff I copied the rtx and the length is nonzero. */
+              /* Copy the vector iff I copied the rtx and the length
+		 is nonzero.  */
 	      if (copied && len > 0)
 		XVEC (x, i) = gen_rtvec_v (len, XVEC (x, i)->elem);
               
-              /* Call recsusively on all inside the vector. */
+              /* Call recsusively on all inside the vector.  */
 	      for (j = 0; j < len; j++)
                 {
 		  if (last_ptr)
Index: final.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/final.c,v
retrieving revision 1.300
diff -u -r1.300 final.c
--- final.c	11 Dec 2003 00:20:38 -0000	1.300
+++ final.c	21 Dec 2003 08:37:06 -0000
@@ -1907,7 +1907,7 @@
 	/* An INSN, JUMP_INSN or CALL_INSN.
 	   First check for special kinds that recog doesn't recognize.  */
 
-	if (GET_CODE (body) == USE /* These are just declarations */
+	if (GET_CODE (body) == USE /* These are just declarations.  */
 	    || GET_CODE (body) == CLOBBER)
 	  break;
 
Index: function.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/function.c,v
retrieving revision 1.478
diff -u -r1.478 function.c
--- function.c	16 Dec 2003 00:06:33 -0000	1.478
+++ function.c	21 Dec 2003 08:37:10 -0000
@@ -4844,7 +4844,7 @@
 				     size_stored / UNITS_PER_WORD);
 	    }
 	  /* If parm is already bound to register pair, don't change 
-	     this binding. */
+	     this binding.  */
 	  if (! DECL_RTL_SET_P (parm))
 	    SET_DECL_RTL (parm, stack_parm);
 	}
Index: gcov.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/gcov.c,v
retrieving revision 1.77
diff -u -r1.77 gcov.c
--- gcov.c	27 Aug 2003 21:13:16 -0000	1.77
+++ gcov.c	21 Dec 2003 08:37:11 -0000
@@ -906,7 +906,7 @@
     }
   gcov_close ();
 
-  /* We built everything backwards, so nreverse them all */
+  /* We built everything backwards, so nreverse them all.  */
 
   /* Reverse sources. Not strictly necessary, but we'll then process
      them in the 'expected' order.  */
Index: gcse.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/gcse.c,v
retrieving revision 1.282
diff -u -r1.282 gcse.c
--- gcse.c	18 Dec 2003 02:45:14 -0000	1.282
+++ gcse.c	21 Dec 2003 08:37:14 -0000
@@ -7990,7 +7990,7 @@
   if (file)
     dump_flow_info (file);
 
-  /* Return if there's nothing to do, or it is too expensive  */
+  /* Return if there's nothing to do, or it is too expensive.  */
   if (n_basic_blocks <= 1 || is_too_expensive (_ ("jump bypassing disabled")))
     return 0;
 
Index: genemit.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/genemit.c,v
retrieving revision 1.85
diff -u -r1.85 genemit.c
--- genemit.c	30 Nov 2003 19:12:12 -0000	1.85
+++ genemit.c	21 Dec 2003 08:37:15 -0000
@@ -389,7 +389,7 @@
   printf (")\n");
   printf ("{\n");
 
-  /* Output code to construct and return the rtl for the instruction body */
+  /* Output code to construct and return the rtl for the instruction body.  */
 
   if (XVECLEN (insn, 1) == 1)
     {
Index: ggc.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/ggc.h,v
retrieving revision 1.60
diff -u -r1.60 ggc.h
--- ggc.h	1 Dec 2003 22:59:29 -0000	1.60
+++ ggc.h	21 Dec 2003 08:37:15 -0000
@@ -213,7 +213,7 @@
 extern void *ggc_alloc (size_t);
 /* Allocate an object into the specified allocation zone.  */
 extern void *ggc_alloc_zone (size_t, struct alloc_zone *);
-/* Allocate an object of the specified type and size. */
+/* Allocate an object of the specified type and size.  */
 extern void *ggc_alloc_typed (enum gt_types_enum, size_t);
 /* Like ggc_alloc, but allocates cleared memory.  */
 extern void *ggc_alloc_cleared (size_t);
Index: haifa-sched.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/haifa-sched.c,v
retrieving revision 1.234
diff -u -r1.234 haifa-sched.c
--- haifa-sched.c	11 Dec 2003 00:20:43 -0000	1.234
+++ haifa-sched.c	21 Dec 2003 08:37:16 -0000
@@ -1871,7 +1871,7 @@
 
 
 /* Remove insns from the queue, before they become "ready" with respect
-   to FU latency considerations.   */
+   to FU latency considerations.  */
 
 static int 
 early_queue_to_ready (state_t state, struct ready_list *ready)
Index: ifcvt.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/ifcvt.c,v
retrieving revision 1.134
diff -u -r1.134 ifcvt.c
--- ifcvt.c	16 Dec 2003 02:22:57 -0000	1.134
+++ ifcvt.c	21 Dec 2003 08:37:18 -0000
@@ -452,7 +452,7 @@
      conditional execution register from a comparison, it can do so here.  */
   IFCVT_MODIFY_TESTS (ce_info, true_expr, false_expr);
 
-  /* See if the conversion failed */
+  /* See if the conversion failed.  */
   if (!true_expr || !false_expr)
     goto fail;
 #endif
@@ -521,7 +521,7 @@
 #ifdef IFCVT_MODIFY_MULTIPLE_TESTS
 	  IFCVT_MODIFY_MULTIPLE_TESTS (ce_info, bb, t, f);
 
-	  /* See if the conversion failed */
+	  /* See if the conversion failed.  */
 	  if (!t || !f)
 	    goto fail;
 #endif
@@ -563,7 +563,7 @@
     }
 
 #ifdef IFCVT_MODIFY_FINAL
-  /* Do any machine dependent final modifications */
+  /* Do any machine dependent final modifications.  */
   IFCVT_MODIFY_FINAL (ce_info);
 #endif
 
Index: libgcc2.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/libgcc2.h,v
retrieving revision 1.27
diff -u -r1.27 libgcc2.h
--- libgcc2.h	22 Apr 2003 17:21:04 -0000	1.27
+++ libgcc2.h	21 Dec 2003 08:37:18 -0000
@@ -69,15 +69,15 @@
 typedef		 int HItype	__attribute__ ((mode (HI)));
 typedef unsigned int UHItype	__attribute__ ((mode (HI)));
 #if MIN_UNITS_PER_WORD > 1
-/* These typedefs are usually forbidden on dsp's with UNITS_PER_WORD 1 */
+/* These typedefs are usually forbidden on dsp's with UNITS_PER_WORD 1.  */
 typedef 	 int SItype	__attribute__ ((mode (SI)));
 typedef unsigned int USItype	__attribute__ ((mode (SI)));
 #if LONG_LONG_TYPE_SIZE > 32
-/* These typedefs are usually forbidden on archs with UNITS_PER_WORD 2 */
+/* These typedefs are usually forbidden on archs with UNITS_PER_WORD 2.  */
 typedef		 int DItype	__attribute__ ((mode (DI)));
 typedef unsigned int UDItype	__attribute__ ((mode (DI)));
 #if MIN_UNITS_PER_WORD > 4
-/* These typedefs are usually forbidden on archs with UNITS_PER_WORD 4 */
+/* These typedefs are usually forbidden on archs with UNITS_PER_WORD 4.  */
 typedef		 int TItype	__attribute__ ((mode (TI)));
 typedef unsigned int UTItype	__attribute__ ((mode (TI)));
 #endif
Index: loop.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/loop.c,v
retrieving revision 1.481
diff -u -r1.481 loop.c
--- loop.c	18 Dec 2003 12:15:35 -0000	1.481
+++ loop.c	21 Dec 2003 08:37:23 -0000
@@ -5654,7 +5654,7 @@
       /* Set initial value to the reg itself.  */
       bl->initial_value = dest_reg;
       bl->final_value = 0;
-      /* We haven't seen the initializing insn yet */
+      /* We haven't seen the initializing insn yet.  */
       bl->init_insn = 0;
       bl->init_set = 0;
       bl->initial_test = 0;
Index: predict.h
===================================================================
RCS file: /cvs/gcc/gcc/gcc/predict.h,v
retrieving revision 1.8
diff -u -r1.8 predict.h
--- predict.h	28 Nov 2003 11:23:36 -0000	1.8
+++ predict.h	21 Dec 2003 08:37:23 -0000
@@ -39,7 +39,7 @@
 extern void predict_insn_def (rtx, enum br_predictor, enum prediction);
 extern void predict_insn (rtx, enum br_predictor, int);
 
-/* Avoid unneeded dependency on basic_block.h  */
+/* Avoid unneeded dependency on basic_block.h.  */
 #ifdef BASIC_BLOCK
 extern void predict_edge (edge, enum br_predictor, int);
 extern void predict_edge_def (edge, enum br_predictor, enum prediction);
Index: unwind-libunwind.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/unwind-libunwind.c,v
retrieving revision 1.8
diff -u -r1.8 unwind-libunwind.c
--- unwind-libunwind.c	11 Dec 2003 20:50:32 -0000	1.8
+++ unwind-libunwind.c	21 Dec 2003 08:37:23 -0000
@@ -126,7 +126,7 @@
   unw_set_reg (&context->cursor, index, val);
 #ifdef UNW_TARGET_IA64
   if (index >= UNW_IA64_GR && index <= UNW_IA64_GR + 127)
-    /* Clear the NaT bit. */
+    /* Clear the NaT bit.  */
     unw_set_reg (&context->cursor, UNW_IA64_NAT + (index - UNW_IA64_GR), 0);
 #endif
 }
Index: varasm.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/varasm.c,v
retrieving revision 1.400
diff -u -r1.400 varasm.c
--- varasm.c	17 Dec 2003 04:45:50 -0000	1.400
+++ varasm.c	21 Dec 2003 08:37:25 -0000
@@ -1135,7 +1135,7 @@
       maybe_assemble_visibility (decl);
     }
 
-  /* Do any machine/system dependent processing of the function name */
+  /* Do any machine/system dependent processing of the function name.  */
 #ifdef ASM_DECLARE_FUNCTION_NAME
   ASM_DECLARE_FUNCTION_NAME (asm_out_file, fnname, current_function_decl);
 #else


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