diff options
Diffstat (limited to 'gcc/cfgbuild.c')
-rw-r--r-- | gcc/cfgbuild.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cfgbuild.c b/gcc/cfgbuild.c index 082f070..d7fa97a 100644 --- a/gcc/cfgbuild.c +++ b/gcc/cfgbuild.c @@ -337,10 +337,10 @@ make_edges (basic_block min, basic_block max, int update_p) taken, then only calls to those functions or to other nested functions that use them could possibly do nonlocal gotos. */ - for (rtx_expr_list *x = nonlocal_goto_handler_labels; + for (rtx_insn_list *x = nonlocal_goto_handler_labels; x; x = x->next ()) - make_label_edge (edge_cache, bb, x->element (), + make_label_edge (edge_cache, bb, x->insn (), EDGE_ABNORMAL | EDGE_ABNORMAL_CALL); } |