diff options
Diffstat (limited to 'gcc/ipa-reference.c')
-rw-r--r-- | gcc/ipa-reference.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/ipa-reference.c b/gcc/ipa-reference.c index fe2f807..077aa18 100644 --- a/gcc/ipa-reference.c +++ b/gcc/ipa-reference.c @@ -888,7 +888,7 @@ clean_function (struct cgraph_node *fn) on the local information that was produced by ipa_analyze_function and ipa_analyze_variable. */ -static void +static unsigned int static_execute (void) { struct cgraph_node *node; @@ -1302,6 +1302,7 @@ static_execute (void) && (cgraph_function_body_availability (node) == AVAIL_OVERWRITABLE)) clean_function (node); } + return 0; } |