diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-13 14:50:26 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-06-13 14:50:26 +0000 |
commit | 0ea2d350e936eed6a5a6d0b755ac918effa054d6 (patch) | |
tree | aa39f92fe9688daf10109d15793c2c6e0bf4814a /gcc/lto-streamer.c | |
parent | 5347908ccc03ee13d3043df664d887fa9716101d (diff) | |
download | gcc-0ea2d350e936eed6a5a6d0b755ac918effa054d6.tar.gz |
* bitmap.c (bitmap_and, bitmap_and_into, bitmap_and_compl,
bitmap_and_compl_into, bitmap_compl_and_into, bitmap_ior,
bitmap_ior_into, bitmap_xor, bitmap_xor_into,
bitmap_ior_and_compl, bitmap_ior_and_compl): Turn internal datastructure
checks into checking asserts.
* rtlanal.c (find_reg_note): Use gcc_checking_assert.
* tree-ssa-sccvn.c (VN_INFO): Likewise.
* df-scan.c (df_reorganize_refs_by_reg_by_reg, df_install_ref,
df_ref_create_structure): Likewise.
* alloc-pool.c (create_alloc_pool, empty_alloc_pool, pool_alloc,
pool_free): Use gcc_checking_assert.
* alias.c (get_alias_set): Likewise.
* var-tracking.c (variable_htab_free, shared_hash_copy,
canonicalize_values_mark, variable_merge_over_cur): Likewise.
* lto-streamer.c (bp_unpack_value): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@160681 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/lto-streamer.c')
-rw-r--r-- | gcc/lto-streamer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/lto-streamer.c b/gcc/lto-streamer.c index 5b0e7748b2f..216bc9536df 100644 --- a/gcc/lto-streamer.c +++ b/gcc/lto-streamer.c @@ -382,7 +382,7 @@ bp_unpack_value (struct bitpack_d *bp, unsigned nbits) unsigned ix; /* We cannot decode more bits than BITS_PER_BITPACK_WORD. */ - gcc_assert (nbits > 0 && nbits <= BITS_PER_BITPACK_WORD); + gcc_checking_assert (nbits > 0 && nbits <= BITS_PER_BITPACK_WORD); /* Compute which word contains the next NBITS. */ ix = bp_get_next_word (bp, nbits); |