diff options
author | Jeff Law <law@redhat.com> | 2016-04-27 14:52:15 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2016-04-27 14:52:15 -0600 |
commit | 565f407037aaae41f9111a76c9df7348caf12fb9 (patch) | |
tree | cff8100bcc8fa8ef0140a39c881716eac85b6a8e | |
parent | 6bc2bb1821cc65ff6e463cb1fc930c5d152fe04d (diff) | |
download | gcc-565f407037aaae41f9111a76c9df7348caf12fb9.zip gcc-565f407037aaae41f9111a76c9df7348caf12fb9.tar.gz gcc-565f407037aaae41f9111a76c9df7348caf12fb9.tar.bz2 |
* tree-ssa-dom.c (record_temporary_equivalences): Fix typo in comment.
From-SVN: r235535
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/tree-ssa-dom.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 029a402..8cbae41 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2016-04-27 Jeff Law <law@redhat.com> + + * tree-ssa-dom.c (record_temporary_equivalences): Fix typo in comment. + 2016-04-27 Bill Schmidt <wschmidt@linux.vnet.ibm.com> * config/rs6000/altivec.md (altivec_lvx_<mode>): Remove. diff --git a/gcc/tree-ssa-dom.c b/gcc/tree-ssa-dom.c index 9aaa372..8bf5b3c 100644 --- a/gcc/tree-ssa-dom.c +++ b/gcc/tree-ssa-dom.c @@ -921,7 +921,7 @@ record_temporary_equivalences (edge e, /* We already recorded that LHS = RHS, with canonicalization, value chain following, etc. - We also want to return RHS = LHS, but without any canonicalization + We also want to record RHS = LHS, but without any canonicalization or value chain following. */ if (TREE_CODE (rhs) == SSA_NAME) const_and_copies->record_const_or_copy_raw (rhs, lhs, |