From: Jeff Law Date: Tue, 28 Apr 2015 23:18:27 +0000 (-0600) Subject: * tree-ssa-dom.c (record_equality); Fix comment typos. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=11da52a9ce22f48ae3512b955e6d359b36eb11e1;p=gcc.git * tree-ssa-dom.c (record_equality); Fix comment typos. From-SVN: r222551 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8ba462b6e74..27752264ad5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2015-04-28 Jeff Law + + * tree-ssa-dom.c (record_equality); Fix comment typos. + 2015-04-28 Tom de Vries PR tree-optimization/65887 diff --git a/gcc/tree-ssa-dom.c b/gcc/tree-ssa-dom.c index c7d427be22e..14f3e9ef928 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. */