aboutsummaryrefslogtreecommitdiff
path: root/gcc/bitmap.c
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/bitmap.c
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/bitmap.c')
-rw-r--r--gcc/bitmap.c2
1 files changed, 1 insertions, 1 deletions
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;