diff options
author | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-01-23 22:48:23 +0000 |
---|---|---|
committer | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-01-23 22:48:23 +0000 |
commit | f3d84bf8c91f25831c0f254a965134348a2bfc7c (patch) | |
tree | 740463f1c0a147f38493ee54bfa14b5b99916cbb /gcc/bitmap.h | |
parent | cd30b839ee28c3631afbdbb1936b95cfc26ecfa3 (diff) | |
download | gcc-f3d84bf8c91f25831c0f254a965134348a2bfc7c.tar.gz |
* bitmap.h (BITMAP_FREE): Eliminate `implicit conversion from
void *' warning from -Wc++-compat.
* Makefile.in (dominance.o-warn): Remove.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@143593 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/bitmap.h')
-rw-r--r-- | gcc/bitmap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/bitmap.h b/gcc/bitmap.h index 7f17dc1d361..905eed359e9 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. */ |