aboutsummaryrefslogtreecommitdiff
path: root/gcc/bitmap.c
diff options
context:
space:
mode:
authorRafael Avila de Espindola <espindola@google.com>2009-04-30 16:24:31 +0000
committerRafael Espindola <espindola@gcc.gnu.org>2009-04-30 16:24:31 +0000
commitf136c8ae80e6060a326e4a0b80908e79e0ae18ea (patch)
treeec649a5e2e4e14a600abaaaabf117f1cd7e12abf /gcc/bitmap.c
parent512e7d7fb0d968c92c85f3cc3c73c3eaea993dfe (diff)
downloadgcc-f136c8ae80e6060a326e4a0b80908e79e0ae18ea.zip
gcc-f136c8ae80e6060a326e4a0b80908e79e0ae18ea.tar.gz
gcc-f136c8ae80e6060a326e4a0b80908e79e0ae18ea.tar.bz2
alloc-pool.c (alloc_pool_descriptor): Use an insert_opion value instead of an int.
2009-04-30 Rafael Avila de Espindola <espindola@google.com> * alloc-pool.c (alloc_pool_descriptor): Use an insert_opion value instead of an int. * bitmap.c (bitmap_descriptor): Likewise. * ggc-common.c (loc_descriptor): Likewise. * varray.c (varray_descriptor): Likewise. * vec.c (vec_descriptor): Likewise. From-SVN: r147009
Diffstat (limited to 'gcc/bitmap.c')
-rw-r--r--gcc/bitmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/bitmap.c b/gcc/bitmap.c
index 6230adb..c9a226a 100644
--- a/gcc/bitmap.c
+++ b/gcc/bitmap.c
@@ -87,7 +87,7 @@ bitmap_descriptor (const char *file, const char *function, int line)
slot = (struct bitmap_descriptor **)
htab_find_slot_with_hash (bitmap_desc_hash, &loc,
htab_hash_pointer (file) + line,
- 1);
+ INSERT);
if (*slot)
return *slot;
*slot = XCNEW (struct bitmap_descriptor);