diff options
Diffstat (limited to 'gcc/tree-into-ssa.c')
-rw-r--r-- | gcc/tree-into-ssa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-into-ssa.c b/gcc/tree-into-ssa.c index 8365ee1074a..d1fb1924192 100644 --- a/gcc/tree-into-ssa.c +++ b/gcc/tree-into-ssa.c @@ -2291,7 +2291,7 @@ init_ssa_renamer (void) /* Allocate memory for the DEF_BLOCKS hash table. */ gcc_assert (var_infos == NULL); var_infos = htab_create (VEC_length (tree, cfun->local_decls), - var_info_hash, var_info_eq, NULL); + var_info_hash, var_info_eq, free); bitmap_obstack_initialize (&update_ssa_obstack); } @@ -3170,7 +3170,7 @@ update_ssa (unsigned update_flags) { /* If we rename bare symbols initialize the mapping to auxiliar info we need to keep track of. */ - var_infos = htab_create (47, var_info_hash, var_info_eq, NULL); + var_infos = htab_create (47, var_info_hash, var_info_eq, free); /* If we have to rename some symbols from scratch, we need to start the process at the root of the CFG. FIXME, it should |