Commit b40bf772 by Bernhard Fischer Committed by Bernhard Reutner-Fischer

tree-ssa-sccvn.c: Fix format of comments.

2008-06-17  Bernhard Fischer  <aldot@gcc.gnu.org>

	* tree-ssa-sccvn.c: Fix format of comments.

From-SVN: r136868
parent a33a598c
2008-06-17 Bernhard Fischer <> 2008-06-17 Bernhard Fischer <aldot@gcc.gnu.org>
* tree-ssa-sccvn.c: Fix format of comments.
2008-06-17 Bernhard Fischer <aldot@gcc.gnu.org>
* cgraph.c: Remove unneeded forward declarations of eq_node() * cgraph.c: Remove unneeded forward declarations of eq_node()
and hash_node(). and hash_node().
......
...@@ -290,7 +290,7 @@ free_reference (void *vp) ...@@ -290,7 +290,7 @@ free_reference (void *vp)
VEC_free (vn_reference_op_s, heap, vr->operands); VEC_free (vn_reference_op_s, heap, vr->operands);
} }
/* Compare two reference operands P1 and P2 for equality. return true if /* Compare two reference operands P1 and P2 for equality. Return true if
they are equal, and false otherwise. */ they are equal, and false otherwise. */
static int static int
...@@ -304,7 +304,7 @@ vn_reference_op_eq (const void *p1, const void *p2) ...@@ -304,7 +304,7 @@ vn_reference_op_eq (const void *p1, const void *p2)
&& expressions_equal_p (vro1->op1, vro2->op1); && expressions_equal_p (vro1->op1, vro2->op1);
} }
/* Compute the hash for a reference operand VRO1 */ /* Compute the hash for a reference operand VRO1. */
static hashval_t static hashval_t
vn_reference_op_compute_hash (const vn_reference_op_t vro1) vn_reference_op_compute_hash (const vn_reference_op_t vro1)
...@@ -386,7 +386,7 @@ vn_reference_eq (const void *p1, const void *p2) ...@@ -386,7 +386,7 @@ vn_reference_eq (const void *p1, const void *p2)
return true; return true;
} }
/* Place the vuses from STMT into *result */ /* Place the vuses from STMT into *result. */
static inline void static inline void
vuses_to_vec (tree stmt, VEC (tree, gc) **result) vuses_to_vec (tree stmt, VEC (tree, gc) **result)
...@@ -418,7 +418,7 @@ copy_vuses_from_stmt (tree stmt) ...@@ -418,7 +418,7 @@ copy_vuses_from_stmt (tree stmt)
return vuses; return vuses;
} }
/* Place the vdefs from STMT into *result */ /* Place the vdefs from STMT into *result. */
static inline void static inline void
vdefs_to_vec (tree stmt, VEC (tree, gc) **result) vdefs_to_vec (tree stmt, VEC (tree, gc) **result)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment