aboutsummaryrefslogtreecommitdiff
path: root/gcc/bitmap.h
diff options
context:
space:
mode:
authorBen Elliston <bje@au.ibm.com>2009-01-23 22:48:23 +0000
committerBen Elliston <bje@gcc.gnu.org>2009-01-24 09:48:23 +1100
commit61ad091447e7b5f71a3ee7e88fe75095bdf3730a (patch)
tree740463f1c0a147f38493ee54bfa14b5b99916cbb /gcc/bitmap.h
parent9bacafeb4c9efa2344620a8fdb79a2ea5aadfbad (diff)
downloadgcc-61ad091447e7b5f71a3ee7e88fe75095bdf3730a.zip
gcc-61ad091447e7b5f71a3ee7e88fe75095bdf3730a.tar.gz
gcc-61ad091447e7b5f71a3ee7e88fe75095bdf3730a.tar.bz2
bitmap.h (BITMAP_FREE): Eliminate `implicit conversion from void *' warning from -Wc++-compat.
* bitmap.h (BITMAP_FREE): Eliminate `implicit conversion from void *' warning from -Wc++-compat. * Makefile.in (dominance.o-warn): Remove. From-SVN: r143593
Diffstat (limited to 'gcc/bitmap.h')
-rw-r--r--gcc/bitmap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/bitmap.h b/gcc/bitmap.h
index 7f17dc1..905eed3 100644
--- a/gcc/bitmap.h
+++ b/gcc/bitmap.h
@@ -194,8 +194,8 @@ extern hashval_t bitmap_hash(const_bitmap);
#define BITMAP_GGC_ALLOC() bitmap_gc_alloc ()
/* Do any cleanup needed on a bitmap when it is no longer used. */
-#define BITMAP_FREE(BITMAP) \
- ((void)(bitmap_obstack_free (BITMAP), (BITMAP) = NULL))
+#define BITMAP_FREE(BITMAP) \
+ ((void) (bitmap_obstack_free ((bitmap) BITMAP), (BITMAP) = (bitmap) NULL))
/* Iterator for bitmaps. */