From 4287b4e84c4af7a331d1b0a390ab3d97f37120c2 Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Tue, 25 Jul 2017 12:20:23 +0200 Subject: Fix wrong condition in ipa-visibility.c (PR ipa/81520). 2017-07-25 Martin Liska PR ipa/81520 * ipa-visibility.c (function_and_variable_visibility): Make the redirection just on target that do supporting aliasing. Fix GNU coding style. 2017-07-25 Martin Liska PR ipa/81520 * gcc.dg/ipa/pr81520.c: New test. From-SVN: r250501 --- gcc/ipa-visibility.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'gcc/ipa-visibility.c') diff --git a/gcc/ipa-visibility.c b/gcc/ipa-visibility.c index 2132170..13cf2a3 100644 --- a/gcc/ipa-visibility.c +++ b/gcc/ipa-visibility.c @@ -615,9 +615,10 @@ function_and_variable_visibility (bool whole_program) struct cgraph_node *node; varpool_node *vnode; - /* All aliases should be procssed at this point. */ + /* All aliases should be processed at this point. */ gcc_checking_assert (!alias_pairs || !alias_pairs->length ()); +#ifdef ASM_OUTPUT_DEF FOR_EACH_DEFINED_FUNCTION (node) { if (node->get_availability () != AVAIL_INTERPOSABLE @@ -634,20 +635,22 @@ function_and_variable_visibility (bool whole_program) continue; if (!alias) - { + { alias = dyn_cast (node->noninterposable_alias ()); gcc_assert (alias && alias != node); } e->redirect_callee (alias); if (gimple_has_body_p (e->caller->decl)) - { + { push_cfun (DECL_STRUCT_FUNCTION (e->caller->decl)); e->redirect_call_stmt_to_callee (); - pop_cfun (); + pop_cfun (); } } } +#endif + FOR_EACH_FUNCTION (node) { int flags = flags_from_decl_or_type (node->decl); -- cgit v1.1