diff options
Diffstat (limited to 'gcc/cfgexpand.c')
-rw-r--r-- | gcc/cfgexpand.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/cfgexpand.c b/gcc/cfgexpand.c index c0bf209d9d8..65ebdb71fcc 100644 --- a/gcc/cfgexpand.c +++ b/gcc/cfgexpand.c @@ -1572,7 +1572,7 @@ discover_nonconstant_array_refs (void) confuse the CFG hooks, so be careful to not manipulate CFG during the expansion. */ -static void +static unsigned int tree_expand_cfg (void) { basic_block bb, init_block; @@ -1685,6 +1685,7 @@ tree_expand_cfg (void) /* After expanding, the return labels are no longer needed. */ return_label = NULL; naked_return_label = NULL; + return 0; } struct tree_opt_pass pass_expand = |