diff options
Diffstat (limited to 'gcc/tree-cfg.c')
-rw-r--r-- | gcc/tree-cfg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index 98434ac70d1..03e177af58f 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -7940,7 +7940,7 @@ split_critical_edges (void) expensive. So we want to enable recording of edge to CASE_LABEL_EXPR mappings around the calls to split_edge. */ start_recording_case_labels (); - FOR_ALL_BB (bb) + FOR_ALL_BB_FN (bb, cfun) { FOR_EACH_EDGE (e, ei, bb->succs) { |