diff options
author | Aldy Hernandez <aldyh@redhat.com> | 2017-11-21 11:39:51 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@gcc.gnu.org> | 2017-11-21 11:39:51 +0000 |
commit | ddc1759a351bcf186aeafa34613ccc89cdba4913 (patch) | |
tree | a7c96608768c6e11525cbaeb91cc39dded4d1e2f | |
parent | 13f5d5e0828e1c2ccba67f9a5f0f8d50f5b42a77 (diff) | |
download | gcc-ddc1759a351bcf186aeafa34613ccc89cdba4913.zip gcc-ddc1759a351bcf186aeafa34613ccc89cdba4913.tar.gz gcc-ddc1759a351bcf186aeafa34613ccc89cdba4913.tar.bz2 |
tree-ssa-threadbackward.c (find_jump_threads_backwards): Fix typo in comment.
* tree-ssa-threadbackward.c (find_jump_threads_backwards): Fix
typo in comment.
From-SVN: r254999
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/tree-ssa-threadbackward.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index bc50425..2f13296 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2017-11-21 Aldy Hernandez <aldyh@redhat.com> + + * tree-ssa-threadbackward.c (find_jump_threads_backwards): Fix + typo in comment. + 2017-11-21 Claudiu Zissulescu <claziss@synopsys.com> * cfgrtl.c (force_nonfallthru_and_redirect): Don't split a call diff --git a/gcc/tree-ssa-threadbackward.c b/gcc/tree-ssa-threadbackward.c index 6fdbc90..f3f55cf 100644 --- a/gcc/tree-ssa-threadbackward.c +++ b/gcc/tree-ssa-threadbackward.c @@ -732,7 +732,7 @@ thread_jumps::fsm_find_control_statement_thread_paths (tree name) It is assumed that BB ends with a control statement and that by finding a path where NAME is a constant, we can thread the path. - SPEED_P_ indicate that we could increase code size to improve the + SPEED_P indicates that we could increase code size to improve the code path. */ void |