diff options
Diffstat (limited to 'gcc/tree-phinodes.c')
-rw-r--r-- | gcc/tree-phinodes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-phinodes.c b/gcc/tree-phinodes.c index 5d74765..9d20b0e 100644 --- a/gcc/tree-phinodes.c +++ b/gcc/tree-phinodes.c @@ -152,7 +152,7 @@ allocate_phi_node (int len) } else { - phi = ggc_alloc (size); + phi = (tree) ggc_alloc (size); #ifdef GATHER_STATISTICS phi_nodes_created++; tree_node_counts[(int) phi_kind]++; |