diff options
Diffstat (limited to 'gcc/graphite.c')
-rw-r--r-- | gcc/graphite.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/graphite.c b/gcc/graphite.c index a87bca8..f3bdc4b 100644 --- a/gcc/graphite.c +++ b/gcc/graphite.c @@ -4555,7 +4555,7 @@ add_loop_exit_phis (void **slot, void *s) tree res = create_new_def_for (gimple_phi_result (phi), phi, gimple_phi_result_ptr (phi)); - add_phi_arg (phi, new_name, single_pred_edge (bb)); + add_phi_arg (phi, new_name, single_pred_edge (bb), UNKNOWN_LOCATION); entry->new_name = res; *slot = entry; @@ -4617,8 +4617,8 @@ add_guard_exit_phis (void **slot, void *s) tree res = create_new_def_for (gimple_phi_result (phi), phi, gimple_phi_result_ptr (phi)); - add_phi_arg (phi, name1, true_edge); - add_phi_arg (phi, name2, false_edge); + add_phi_arg (phi, name1, true_edge, UNKNOWN_LOCATION); + add_phi_arg (phi, name2, false_edge, UNKNOWN_LOCATION); entry->new_name = res; *slot = entry; @@ -5141,8 +5141,8 @@ scop_add_exit_phis_edge (basic_block exit, tree use, edge false_e, edge true_e) create_new_def_for (gimple_phi_result (phi), phi, gimple_phi_result_ptr (phi)); - add_phi_arg (phi, use, false_e); - add_phi_arg (phi, use, true_e); + add_phi_arg (phi, use, false_e, UNKNOWN_LOCATION); + add_phi_arg (phi, use, true_e, UNKNOWN_LOCATION); } /* Add phi nodes for VAR that is used in LIVEIN. Phi nodes are |