c-common.c, [...]: Fix comment formatting.
authorKazu Hirata <kazu@cs.umass.edu>
Tue, 8 Mar 2005 13:57:01 +0000 (13:57 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Tue, 8 Mar 2005 13:57:01 +0000 (13:57 +0000)
* c-common.c, c-opts.c, combine.c, cse.c, dojump.c,
gimplify.c, tree-dfa.c, tree-ssa-loop-ivopts.c,
tree-ssa-phiopt.c, tree-ssa-pre.c, tree-ssa-sink.c,
tree-vect-analyze.c, tree.def, tree.h: Fix comment formatting.

From-SVN: r96104

15 files changed:
gcc/ChangeLog
gcc/c-common.c
gcc/c-opts.c
gcc/combine.c
gcc/cse.c
gcc/dojump.c
gcc/gimplify.c
gcc/tree-dfa.c
gcc/tree-ssa-loop-ivopts.c
gcc/tree-ssa-phiopt.c
gcc/tree-ssa-pre.c
gcc/tree-ssa-sink.c
gcc/tree-vect-analyze.c
gcc/tree.def
gcc/tree.h

index a89869d96bb050bb375e818bb3a18f0a8f6300f1..40d702cde82fb4709d194f6be608f398bdb08810 100644 (file)
@@ -1,3 +1,10 @@
+2005-03-08  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * c-common.c, c-opts.c, combine.c, cse.c, dojump.c,
+       gimplify.c, tree-dfa.c, tree-ssa-loop-ivopts.c,
+       tree-ssa-phiopt.c, tree-ssa-pre.c, tree-ssa-sink.c,
+       tree-vect-analyze.c, tree.def, tree.h: Fix comment formatting.
+
 2005-03-08  Alexey Neyman  <alex.neyman@auriga.ru>
 
        PR c/14411
index 313af75e6a762f67ea8fdf24d4b1c6370072d477..e658cf12e7b4f605a2ce7cff32cd6bf6e4225267 100644 (file)
@@ -3272,7 +3272,7 @@ c_common_nodes_and_builtins (void)
 
 /* Look up the function in built_in_decls that corresponds to DECL
    and set ASMSPEC as its user assembler name.  DECL must be a
-   function decl that declares a builtin. */
+   function decl that declares a builtin.  */
 
 void
 set_builtin_user_assembler_name (tree decl, const char *asmspec)
index d2abeb527b6e7f0cd8f398839520c4b27f95e2f1..128c83a3f3659d4b5cec7c6e6251f32691139dca 100644 (file)
@@ -1097,7 +1097,7 @@ c_common_parse_file (int set_yydebug)
       c_parse_file ();
       finish_file ();
       pop_file_scope ();
-      /* And end the main input file. */
+      /* And end the main input file.  */
       (*debug_hooks->end_source_file) (0);
       if (++i >= num_in_fnames)
        break;
@@ -1229,7 +1229,7 @@ sanitize_cpp_opts (void)
 
   /* Disable -dD, -dN and -dI if normal output is suppressed.  Allow
      -dM since at least glibc relies on -M -dM to work.  */
-  /* Also, flag_no_output implies flag_no_line_commands, always. */
+  /* Also, flag_no_output implies flag_no_line_commands, always.  */
   if (flag_no_output)
     {
       if (flag_dump_macros != 'M')
index 48d7020641cc6873c435b4d90bd769cc047920b5..0fc1f5f4283fb6e39748db0a2d6118d272b61e70 100644 (file)
@@ -9434,7 +9434,8 @@ gen_lowpart_for_combine (enum machine_mode omode, rtx x)
       if (WORDS_BIG_ENDIAN)
        offset = MAX (isize, UNITS_PER_WORD) - MAX (osize, UNITS_PER_WORD);
 
-      /* Adjust the address so that the address-after-the-data is unchanged. */
+      /* Adjust the address so that the address-after-the-data is
+        unchanged.  */
       if (BYTES_BIG_ENDIAN)
        offset -= MIN (UNITS_PER_WORD, osize) - MIN (UNITS_PER_WORD, isize);
 
index 097974054b2bedfe28ea50b5e3772c9d46fe59a4..d7f3027e2bb48129eb776669609d7cef31fdbd8c 100644 (file)
--- a/gcc/cse.c
+++ b/gcc/cse.c
@@ -2987,7 +2987,7 @@ find_best_addr (rtx insn, rtx *loc, enum machine_mode mode)
                int new_cost;
                
                /* Get the canonical version of the address so we can accept
-                  more. */
+                  more.  */
                new = canon_for_address (new);
                
                new_cost = address_cost (new, mode);
index c10ea39c36684be855359288e0b9142ab4c1d478..3c9d88a548b9b8a4f3688da23749dfd7d4c2922a 100644 (file)
@@ -926,7 +926,7 @@ do_compare_and_jump (tree exp, enum rtx_code signed_code,
      be reliably compared, then canonicalize them.
      Only do this if *both* sides of the comparison are function pointers.
      If one side isn't, we want a noncanonicalized comparison.  See PR
-     middle-end/17564. */
+     middle-end/17564.  */
   if (HAVE_canonicalize_funcptr_for_compare
       && TREE_CODE (TREE_TYPE (TREE_OPERAND (exp, 0))) == POINTER_TYPE
       && TREE_CODE (TREE_TYPE (TREE_TYPE (TREE_OPERAND (exp, 0))))
index ba8e707e0691128c25b1adcf617047deea1f53ce..93724a9e403a42da8aaa8a5b0e7df361d03aa385 100644 (file)
@@ -4256,7 +4256,7 @@ gimplify_type_sizes (tree type, tree *list_p)
      can't easily test for.  We could pass TYPE down to gimplify_one_sizepos
      and test there, but it doesn't seem worth it.  */
 
-  /* We first do the main variant, then copy into any other variants. */
+  /* We first do the main variant, then copy into any other variants.  */
   type = TYPE_MAIN_VARIANT (type);
 
   switch (TREE_CODE (type))
index 641bb1b4df44f2c27804cf413389d1ede4f0baa5..630ee4cbf8d847a01df66726262d467700c8f483 100644 (file)
@@ -907,7 +907,7 @@ add_referenced_var (tree var, struct walk_state *walk_state)
           && !DECL_EXTERNAL (var)
          /* It's not necessary to walk the initial value of non-constant
             public variables because it cannot be propagated by the
-            optimizers. */
+            optimizers.  */
          && (!TREE_PUBLIC (var) || !TREE_CONSTANT (var)))
        walk_tree (&DECL_INITIAL (var), find_vars_r, walk_state, 0);
     }
index 44314615646ca1e450d2c10f64940f868407a795..98d3a4c007d391e7f11fa3fddb648f623ef49dbb 100644 (file)
@@ -4017,7 +4017,7 @@ iv_ca_delta_add (struct iv_use *use, struct cost_pair *old_cp,
 }
 
 /* Joins two lists of changes L1 and L2.  Destructive -- old lists
-   are rewritten.   */
+   are rewritten.  */
 
 static struct iv_ca_delta *
 iv_ca_delta_join (struct iv_ca_delta *l1, struct iv_ca_delta *l2)
index bbdd732fe125030f72ca1793d9c710a71484f7c9..840829590a0aac157463f273c9d7e589193598d6 100644 (file)
@@ -492,7 +492,7 @@ value_replacement (basic_block cond_bb, basic_block middle_bb,
     replacement.  Return true if the replacement is done.  Otherwise return
     false.
     bb is the basic block where the replacement is going to be done on.  arg0
-    is argument 0 from the phi.  Likewise for arg1.   */
+    is argument 0 from the phi.  Likewise for arg1.  */
 
 static bool
 abs_replacement (basic_block cond_bb, basic_block middle_bb,
index 0f89bed06d42634ac1d7bc5efd77f4ea4e7f041c..d098d87b380478a850619ccbc455bfd00a364b62 100644 (file)
@@ -714,7 +714,7 @@ set_equal (value_set_t a, value_set_t b)
 }
 
 /* Replace an instance of EXPR's VALUE with EXPR in SET if it exists,
-   and add it otherwise. */
+   and add it otherwise.  */
 
 static void
 bitmap_value_replace_in_set (bitmap_set_t set, tree expr)
@@ -1384,7 +1384,7 @@ create_expression_by_pieces (basic_block block, tree expr, tree stmts)
 }
 
 /* Return the folded version of T if T, when folded, is a gimple
-   min_invariant.  Otherwise, return T. */ 
+   min_invariant.  Otherwise, return T.  */ 
 
 static tree
 fully_constant_expression (tree t)
index d1ac56a1afe798ff7784479a0cef4099da6fcad3..5984a5a3fcf8b721f74af16f06c207b8e7f10195 100644 (file)
@@ -73,7 +73,7 @@ Boston, MA 02111-1307, USA.  */
 
 static struct
 {  
-  /* The number of statements sunk down the flowgraph by code sinking. */
+  /* The number of statements sunk down the flowgraph by code sinking.  */
   int sunk;
   
 } sink_stats;
@@ -106,7 +106,7 @@ find_bb_for_arg (tree phi, tree def)
    and all the other uses are in phis in the same basic block, but this
    requires some expensive checking later (you have to make sure no def/vdef
    in the statement occurs for multiple edges in the various phi nodes it's
-   used in, so that you only have one place you can sink it to. */
+   used in, so that you only have one place you can sink it to.  */
 
 static bool
 all_immediate_uses_same_place (dataflow_t imm)
@@ -266,7 +266,7 @@ nearest_common_dominator_of_uses (dataflow_t imm)
 /* Given a statement (STMT) and the basic block it is currently in (FROMBB), 
    determine the location to sink the statement to, if any.
    Return the basic block to sink it to, or NULL if we should not sink
-   it. */
+   it.  */
 
 static tree
 statement_sink_location (tree stmt, basic_block frombb)
index 37445043f67d0af59cecf2d046c48aab4992bca8..5a66a31ceda5a849ab35a8f72cc28f48a9533fda 100644 (file)
@@ -1699,7 +1699,7 @@ vect_object_analysis (tree memref, tree stmt, bool is_read,
     return NULL_TREE;
 
   /* Part 2: Combine the results of object and address analysis to calculate 
-     INITIAL_OFFSET, STEP and misalignment info. */
+     INITIAL_OFFSET, STEP and misalignment info.  */
   *offset = size_binop (PLUS_EXPR, object_offset, address_offset);
   if (object_misalign && address_misalign)
     *misalign = size_binop (PLUS_EXPR, object_misalign, address_misalign);
index 9a7c7e0db3bbae93fa2ae083aaabb545ed8fe267..bcb38849857e9f4d4af26336543b3ffb6ea1aaf6 100644 (file)
@@ -148,7 +148,7 @@ DEFTREECODE (OFFSET_TYPE, "offset_type", tcc_type, 0)
 DEFTREECODE (ENUMERAL_TYPE, "enumeral_type", tcc_type, 0)
 
 /* Boolean type (true or false are the only values).  Looks like an
-   INTEGRAL_TYPE. */
+   INTEGRAL_TYPE.  */
 DEFTREECODE (BOOLEAN_TYPE, "boolean_type", tcc_type, 0)
 
 /* CHAR in Java; not used in C.  Looks like an INTEGRAL_TYPE.  */
@@ -171,7 +171,7 @@ DEFTREECODE (REAL_TYPE, "real_type", tcc_type, 0)
 /* The ordering of the following codes is optimized for the checking
    macros in tree.h.  Changing the order will degrade the speed of the
    compiler.  POINTER_TYPE, REFERENCE_TYPE.  Note that this range
-   overlaps the previous range of ordered types. */
+   overlaps the previous range of ordered types.  */
      
 /* All pointer-to-x types have code POINTER_TYPE.
    The TREE_TYPE points to the node for the type pointed to.  */
@@ -867,7 +867,7 @@ DEFTREECODE (SSA_NAME, "ssa_name", tcc_exceptional, 0)
    PHI_ARG_ELT returns the Ith tuple <ssa_name, edge> from the
    argument list.  Each tuple contains the incoming reaching
    definition (SSA_NAME node) and the edge via which that definition
-   is coming through.   */
+   is coming through.  */
 DEFTREECODE (PHI_NODE, "phi_node", tcc_exceptional, 0)
 
 /* Used to represent a typed exception handler.  CATCH_TYPES is the type (or
index aba12246f784594142ea2a5c7e44287eed77f0b8..3857ff909cc1fdbdc725224c4c4a27c269e8da51 100644 (file)
@@ -751,7 +751,7 @@ extern void tree_operand_check_failed (int, enum tree_code,
 
 /* Nonzero if TYPE represents an integral type.  Note that we do not
    include COMPLEX types here.  Keep these checks in ascending code
-   order. */
+   order.  */
 
 #define INTEGRAL_TYPE_P(TYPE)  \
   (TREE_CODE (TYPE) == ENUMERAL_TYPE  \