diff options
Diffstat (limited to 'gcc')
-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 6f350f1..2c8edfe 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-11-01 Kazu Hirata <kazu@cs.umass.edu> + + * tree-cfg.c (thread_jumps): Fix a comment typo. + 2004-10-31 Nicolas Pitre <nico@cam.org> * config/arm/ieee754-sf.S (floatdisf): Fix regression with diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index e9f456d..2e2132f 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -3988,7 +3988,7 @@ thread_jumps (void) size--; bb = worklist[size]; - /* BB->INDEX is not longer in WORKLIST, so clear BB_VISITED. */ + /* BB is not longer in WORKLIST, so clear BB_VISITED. */ bb->flags &= ~BB_VISITED; if (thread_jumps_from_bb (bb)) |