diff options
Diffstat (limited to 'gcc/java/constants.c')
-rw-r--r-- | gcc/java/constants.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/java/constants.c b/gcc/java/constants.c index 7e9cf2e7..c0295e9 100644 --- a/gcc/java/constants.c +++ b/gcc/java/constants.c @@ -46,8 +46,8 @@ set_constant_entry (CPool *cpool, int index, int tag, jword value) if (cpool->data == NULL) { cpool->capacity = 100; - cpool->tags = (uint8 *) ggc_alloc_cleared_atomic (sizeof (uint8) - * cpool->capacity); + cpool->tags = (uint8 *) ggc_internal_cleared_alloc (sizeof (uint8) + * cpool->capacity); cpool->data = ggc_alloc_cleared_vec_cpool_entry (sizeof (union cpool_entry), cpool->capacity); |