diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-30 18:27:25 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-30 18:27:25 +0000 |
commit | 28c5dc2221f143f8698845f879dfee0f8dd5200b (patch) | |
tree | ca618fca9e3e186970cc4b4d0c57cec0723872e6 | |
parent | 83c20c4f2c1e1e4a90c488452b1afadf4d025525 (diff) | |
download | ppe42-gcc-28c5dc2221f143f8698845f879dfee0f8dd5200b.tar.gz ppe42-gcc-28c5dc2221f143f8698845f879dfee0f8dd5200b.zip |
* protoize.c, tree-cfg.c: Fix comment typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88345 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/protoize.c | 2 | ||||
-rw-r--r-- | gcc/tree-cfg.c | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4cdbe1b7407..eaefa86e2f0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-09-30 Kazu Hirata <kazu@cs.umass.edu> + + * protoize.c, tree-cfg.c: Fix comment typos. + 2004-09-30 Joseph S. Myers <jsm@polyomino.org.uk> PR c/17730 diff --git a/gcc/protoize.c b/gcc/protoize.c index 937f21cfbde..e48089272dd 100644 --- a/gcc/protoize.c +++ b/gcc/protoize.c @@ -970,7 +970,7 @@ free_def_dec (def_dec_info *p) free (p); } -/* Unexpand as many macro symbol as we can find. +/* Unexpand as many macro symbols as we can find. If the given line must be unexpanded, make a copy of it in the heap and return a pointer to the unexpanded copy. Otherwise return NULL. */ diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index db0d1b518cf..025e677c396 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -3863,7 +3863,7 @@ thread_jumps (void) count = e->count; freq = EDGE_FREQUENCY (e); - /* Now walk through as many forwarder block as possible to + /* Now walk through as many forwarder blocks as possible to find the ultimate destination we want to thread our jump to. */ last = EDGE_SUCC (e->dest, 0); |