diff options
Diffstat (limited to 'gcc/tree-ssa-coalesce.c')
-rw-r--r-- | gcc/tree-ssa-coalesce.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-ssa-coalesce.c b/gcc/tree-ssa-coalesce.c index 6468012..8af6583 100644 --- a/gcc/tree-ssa-coalesce.c +++ b/gcc/tree-ssa-coalesce.c @@ -833,7 +833,7 @@ build_ssa_conflict_graph (tree_live_info_p liveinfo) gsi_prev (&gsi)) { tree var; - gimple stmt = gsi_stmt (gsi); + gimple *stmt = gsi_stmt (gsi); /* A copy between 2 partitions does not introduce an interference by itself. If they did, you would never be able to coalesce @@ -947,7 +947,7 @@ create_outofssa_var_map (coalesce_list_p cl, bitmap used_in_copy) gimple_stmt_iterator gsi; basic_block bb; tree var; - gimple stmt; + gimple *stmt; tree first; var_map map; ssa_op_iter iter; |