diff options
Diffstat (limited to 'gcc/ipa.c')
-rw-r--r-- | gcc/ipa.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ipa.c b/gcc/ipa.c index fb3c74992f6..9204caae77b 100644 --- a/gcc/ipa.c +++ b/gcc/ipa.c @@ -240,6 +240,11 @@ cgraph_remove_unreachable_nodes (bool before_inlining_p, FILE *file) #ifdef ENABLE_CHECKING verify_cgraph (); #endif + + /* Reclaim alias pairs for functions that have disappeared from the + call graph. */ + remove_unreachable_alias_pairs (); + return changed; } |