diff options
Diffstat (limited to 'gcc/tree-ssa-alias.c')
-rw-r--r-- | gcc/tree-ssa-alias.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-alias.c b/gcc/tree-ssa-alias.c index 0e5071994de..748ff31684e 100644 --- a/gcc/tree-ssa-alias.c +++ b/gcc/tree-ssa-alias.c @@ -228,7 +228,7 @@ get_mem_sym_stats_for (tree var) slot = pointer_map_insert (map, var); if (*slot == NULL) { - stats = pool_alloc (mem_sym_stats_pool); + stats = (struct mem_sym_stats_d *) pool_alloc (mem_sym_stats_pool); memset (stats, 0, sizeof (*stats)); stats->var = var; *slot = (void *) stats; |