aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/tree-ssa-dom.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 8ba462b..2775226 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2015-04-28 Jeff Law <law@redhat.com>
+
+ * tree-ssa-dom.c (record_equality); Fix comment typos.
+
2015-04-28 Tom de Vries <tom@codesourcery.com>
PR tree-optimization/65887
diff --git a/gcc/tree-ssa-dom.c b/gcc/tree-ssa-dom.c
index c7d427b..14f3e9e 100644
--- a/gcc/tree-ssa-dom.c
+++ b/gcc/tree-ssa-dom.c
@@ -1762,8 +1762,8 @@ record_equality (tree x, tree y)
if (tree_swap_operands_p (x, y, false))
std::swap (x, y);
- /* Most of the time tree_swap_operands_p does what we want. But there's
- cases where we we know one operand is better for copy propagation than
+ /* Most of the time tree_swap_operands_p does what we want. But there
+ are cases where we know one operand is better for copy propagation than
the other. Given no other code cares about ordering of equality
comparison operators for that purpose, we just handle the special cases
here. */