aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorBernhard Fischer <aldot@gcc.gnu.org>2008-06-17 17:41:19 +0200
committerBernhard Reutner-Fischer <aldot@gcc.gnu.org>2008-06-17 17:41:19 +0200
commitb40bf772483dc9e9762d35c00d96ed89872adcca (patch)
treee03a089f4f405095544aa3cf9ae38d9ebfff5484 /gcc
parenta33a598ca9949a69de3ec0923098a7622f67959e (diff)
downloadgcc-b40bf772483dc9e9762d35c00d96ed89872adcca.zip
gcc-b40bf772483dc9e9762d35c00d96ed89872adcca.tar.gz
gcc-b40bf772483dc9e9762d35c00d96ed89872adcca.tar.bz2
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
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/tree-ssa-sccvn.c8
2 files changed, 9 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 1f9ce75..3462fdd 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,4 +1,8 @@
-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()
and hash_node().
diff --git a/gcc/tree-ssa-sccvn.c b/gcc/tree-ssa-sccvn.c
index 8e3de70..1e83e4b 100644
--- a/gcc/tree-ssa-sccvn.c
+++ b/gcc/tree-ssa-sccvn.c
@@ -290,7 +290,7 @@ free_reference (void *vp)
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. */
static int
@@ -304,7 +304,7 @@ vn_reference_op_eq (const void *p1, const void *p2)
&& 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
vn_reference_op_compute_hash (const vn_reference_op_t vro1)
@@ -386,7 +386,7 @@ vn_reference_eq (const void *p1, const void *p2)
return true;
}
-/* Place the vuses from STMT into *result */
+/* Place the vuses from STMT into *result. */
static inline void
vuses_to_vec (tree stmt, VEC (tree, gc) **result)
@@ -418,7 +418,7 @@ copy_vuses_from_stmt (tree stmt)
return vuses;
}
-/* Place the vdefs from STMT into *result */
+/* Place the vdefs from STMT into *result. */
static inline void
vdefs_to_vec (tree stmt, VEC (tree, gc) **result)