diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-10-08 17:11:16 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-10-08 17:11:16 +0000 |
commit | b986ebf3ab7cb7626efb733de35b3e4735b03b09 (patch) | |
tree | 105a800bca305581a7db5b58693fb66ae83934de | |
parent | 8a512b77f30c239fb467ba5d32e08c09b8b8cf3a (diff) | |
download | gcc-b986ebf3ab7cb7626efb733de35b3e4735b03b09.zip gcc-b986ebf3ab7cb7626efb733de35b3e4735b03b09.tar.gz gcc-b986ebf3ab7cb7626efb733de35b3e4735b03b09.tar.bz2 |
* tree-cfg.c: Fix a comment typo.
From-SVN: r88767
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/tree-cfg.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5ce5119..db4c18e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-10-08 Kazu Hirata <kazu@cs.umass.edu> + + * tree-cfg.c: Fix a comment typo. + 2004-10-08 Andreas Krebbel <krebbel1@de.ibm.com> * config/s390/s390.c (s390_register_info): Don't save fprs for diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index c1d40d5..8bdfe5b 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -790,7 +790,7 @@ main_block_label (tree label) return label_for_bb[bb->index]; } -/* Cleanup redundant labels. This is a three-steo process: +/* Cleanup redundant labels. This is a three-step process: 1) Find the leading label for each block. 2) Redirect all references to labels to the leading labels. 3) Cleanup all useless labels. */ |