diff options
Diffstat (limited to 'gcc/mcf.c')
-rw-r--r-- | gcc/mcf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/mcf.c b/gcc/mcf.c index 7a716f58177..52020b8c2f8 100644 --- a/gcc/mcf.c +++ b/gcc/mcf.c @@ -385,7 +385,7 @@ add_fixup_edge (fixup_graph_type *fixup_graph, int src, int dest, edge_type type, gcov_type weight, gcov_type cost, gcov_type max_capacity) { - fixup_edge_p curr_edge = add_edge(fixup_graph, src, dest, cost); + fixup_edge_p curr_edge = add_edge (fixup_graph, src, dest, cost); curr_edge->type = type; curr_edge->weight = weight; curr_edge->max_capacity = max_capacity; |