aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2001-06-25 18:32:24 +0000
committerStan Shebs <shebs@gcc.gnu.org>2001-06-25 18:32:24 +0000
commit46eee914d6362cdd2bbb88310a382b65d1acfe85 (patch)
tree8b9d8ea7bd23a40584b44a8149a67d10adccb2b1 /gcc
parentf47c8646071da93e7aed128b9841a2ff015f0521 (diff)
downloadgcc-46eee914d6362cdd2bbb88310a382b65d1acfe85.zip
gcc-46eee914d6362cdd2bbb88310a382b65d1acfe85.tar.gz
gcc-46eee914d6362cdd2bbb88310a382b65d1acfe85.tar.bz2
bitmap.c (bitmap_last_bit_set): Fix a non-c89 usage (null actual argument to macro).
2001-06-25 Dale Johannesen <dalej@apple.com> * bitmap.c (bitmap_last_bit_set): Fix a non-c89 usage (null actual argument to macro). From-SVN: r43554
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/bitmap.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 6e033da..3b3b4d1 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2001-06-25 Dale Johannesen <dalej@apple.com>
+
+ * bitmap.c (bitmap_last_bit_set): Fix a non-c89 usage (null actual
+ argument to macro).
+
Mon Jun 25 11:10:51 CEST 2001 Jan Hubicka <jh@suse.cz>
* i386.md (movsi_insv_1, movsi_insv_1_rex64): Fix constraints.
diff --git a/gcc/bitmap.c b/gcc/bitmap.c
index 8521ab5..3fa0fb6 100644
--- a/gcc/bitmap.c
+++ b/gcc/bitmap.c
@@ -707,7 +707,7 @@ bitmap_last_set_bit (a)
bitmap a;
{
int i;
- EXECUTE_IF_SET_IN_BITMAP (a, 0, i, );
+ EXECUTE_IF_SET_IN_BITMAP (a, 0, i, ;);
if (bitmap_bit_p (a, i))
return i;
return -1;