diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-04-01 19:48:01 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-04-01 19:48:01 +0000 |
commit | 4486418e176c6c8fc4c3f2ecb12f130406c46e89 (patch) | |
tree | d0643ac498a8717ec42054fe964056ce95cc37e2 /gcc/bitmap.h | |
parent | 41456429d0333227c6abe2fd87ef2eba382c5170 (diff) | |
download | gcc-4486418e176c6c8fc4c3f2ecb12f130406c46e89.tar.gz |
* emit-rtl.c (emit_insn_before_setloc): Do not ICE when asked to emit
before very first instruction.
* ggc-page.c (ggc_print_statistics): Fix formatting string to avoid
waring on 64bit hosts.
* bitmap.h: Fix typo in bitmap_head_def.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@123408 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/bitmap.h')
-rw-r--r-- | gcc/bitmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/bitmap.h b/gcc/bitmap.h index 9a33646ccb1..a81945d1216 100644 --- a/gcc/bitmap.h +++ b/gcc/bitmap.h @@ -80,7 +80,7 @@ typedef struct bitmap_head_def GTY(()) { unsigned int indx; /* Index of last element looked at. */ bitmap_obstack *obstack; /* Obstack to allocate elements from. If NULL, then use ggc_alloc. */ -#ifndef GATHER_STATISTICS +#ifdef GATHER_STATISTICS struct bitmap_descriptor GTY((skip)) *desc; #endif } bitmap_head; |