diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-09-27 11:18:10 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-09-27 11:18:10 +0000 |
commit | 75e50bd288af0eaa7342f8cb5e506985fd4067f8 (patch) | |
tree | 2255f96a38fbf12fcf3874d773f867ae605d7995 | |
parent | 2c11433f202147fd3bfd88f2b1b22e9e91c06d91 (diff) | |
download | gcc-75e50bd288af0eaa7342f8cb5e506985fd4067f8.zip gcc-75e50bd288af0eaa7342f8cb5e506985fd4067f8.tar.gz gcc-75e50bd288af0eaa7342f8cb5e506985fd4067f8.tar.bz2 |
* bitmap.h: Fix a comment typo.
From-SVN: r88168
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/bitmap.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 753dede..b75fc60 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-09-27 Kazu Hirata <kazu@cs.umass.edu> + + * bitmap.h: Fix a comment typo. + 2004-09-27 Aaron W. LaFramboise <aaronraolete36@aaronwl.com> * libgcc2.c (getpagesize): Change type of return value to int. diff --git a/gcc/bitmap.h b/gcc/bitmap.h index 76cd473..0afc7f5 100644 --- a/gcc/bitmap.h +++ b/gcc/bitmap.h @@ -282,7 +282,7 @@ bmp_iter_single_init (bitmap_iterator *bi, bitmap bmp, unsigned min) return bmp_iter_single_next_1 (bi); } -/* Returns true if all elements of the bitmap refered to by iterator BI +/* Returns true if all elements of the bitmap referred to by iterator BI were processed. */ static inline bool |