diff options
author | vries <vries@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-01-06 14:42:13 +0000 |
---|---|---|
committer | vries <vries@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-01-06 14:42:13 +0000 |
commit | ee5b36afd2eeba0d1227eaa945c1787758e9c65a (patch) | |
tree | 8ff7cfc30e625bce9b1618dd7d31d240768ac82e | |
parent | 88772f979ee7b5f67522864d7aa823a54b1bcef7 (diff) | |
download | gcc-ee5b36afd2eeba0d1227eaa945c1787758e9c65a.tar.gz |
Fix typo in struct same_succ_def comment
2015-01-06 Tom de Vries <tom@codesourcery.com>
* tree-ssa-tail-merge.c: Fix typo in struct same_succ_def comment.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@219261 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/tree-ssa-tail-merge.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7423db3589b..9e83651c142 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2015-01-06 Tom de Vries <tom@codesourcery.com> + + * tree-ssa-tail-merge.c: Fix typo in struct same_succ_def comment. + 2015-01-08 Christian Bruel <christian.bruel@st.com> PR target/64507 diff --git a/gcc/tree-ssa-tail-merge.c b/gcc/tree-ssa-tail-merge.c index ef39f763715..795ca07dd8f 100644 --- a/gcc/tree-ssa-tail-merge.c +++ b/gcc/tree-ssa-tail-merge.c @@ -231,7 +231,7 @@ along with GCC; see the file COPYING3. If not see /* Describes a group of bbs with the same successors. The successor bbs are cached in succs, and the successor edge flags are cached in succ_flags. - If a bb has the EDGE_TRUE/VALSE_VALUE flags swapped compared to succ_flags, + If a bb has the EDGE_TRUE/FALSE_VALUE flags swapped compared to succ_flags, it's marked in inverse. Additionally, the hash value for the struct is cached in hashval, and in_worklist indicates whether it's currently part of worklist. */ |