diff options
Diffstat (limited to 'gcc/tree-switch-conversion.c')
-rw-r--r-- | gcc/tree-switch-conversion.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/tree-switch-conversion.c b/gcc/tree-switch-conversion.c index b90d147..8045798 100644 --- a/gcc/tree-switch-conversion.c +++ b/gcc/tree-switch-conversion.c @@ -1188,10 +1188,8 @@ fix_phi_nodes (edge e1f, edge e2f, basic_block bbf, !gsi_end_p (gsi); gsi_next (&gsi), i++) { gimple phi = gsi_stmt (gsi); - add_phi_arg (phi, info->target_inbound_names[i], e1f, UNKNOWN_LOCATION, - NULL); - add_phi_arg (phi, info->target_outbound_names[i], e2f, UNKNOWN_LOCATION, - NULL); + add_phi_arg (phi, info->target_inbound_names[i], e1f, UNKNOWN_LOCATION); + add_phi_arg (phi, info->target_outbound_names[i], e2f, UNKNOWN_LOCATION); } } |