diff options
Diffstat (limited to 'gcc/tree-cfg.c')
-rw-r--r-- | gcc/tree-cfg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-cfg.c b/gcc/tree-cfg.c index 4929629..988ab2a 100644 --- a/gcc/tree-cfg.c +++ b/gcc/tree-cfg.c @@ -542,7 +542,7 @@ make_blocks_1 (gimple_seq seq, basic_block bb) { if (!first_stmt_of_seq) gsi_split_seq_before (&i, &seq); - bb = create_basic_block (seq, NULL, bb); + bb = create_basic_block (seq, bb); start_new_block = false; } @@ -748,7 +748,7 @@ handle_abnormal_edges (basic_block *dispatcher_bbs, } /* Create the dispatcher bb. */ - *dispatcher = create_basic_block (NULL, NULL, for_bb); + *dispatcher = create_basic_block (NULL, for_bb); if (computed_goto) { /* Factor computed gotos into a common computed goto site. Also |