diff options
author | Jan Hubicka <jh@suse.cz> | 2007-04-01 21:48:01 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2007-04-01 19:48:01 +0000 |
commit | 26cb39935ffe763ca649a6f28a84b2658ea00020 (patch) | |
tree | d0643ac498a8717ec42054fe964056ce95cc37e2 /gcc/bitmap.h | |
parent | f070285a7b0048acebbb1a9ec9f9fbef5c9c0c3e (diff) | |
download | gcc-26cb39935ffe763ca649a6f28a84b2658ea00020.tar.gz |
emit-rtl.c (emit_insn_before_setloc): Do not ICE when asked to emit before very first instruction.
* 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.
From-SVN: r123408
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; |