diff options
Diffstat (limited to 'gcc/tree-cfgcleanup.c')
-rw-r--r-- | gcc/tree-cfgcleanup.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/tree-cfgcleanup.c b/gcc/tree-cfgcleanup.c index 13a3b0b0ea8..547b67af471 100644 --- a/gcc/tree-cfgcleanup.c +++ b/gcc/tree-cfgcleanup.c @@ -574,7 +574,7 @@ cleanup_tree_cfg (void) /* Cleanup cfg and repair loop structures. */ -void +bool cleanup_tree_cfg_loop (void) { bool changed = cleanup_tree_cfg (); @@ -597,6 +597,7 @@ cleanup_tree_cfg_loop (void) #endif scev_reset (); } + return changed; } /* Merge the PHI nodes at BB into those at BB's sole successor. */ |