summaryrefslogtreecommitdiff
path: root/gcc/ipa-visibility.c
diff options
context:
space:
mode:
authorMartin Liska <mliska@suse.cz>2017-07-25 12:20:23 +0200
committerMartin Liska <marxin@gcc.gnu.org>2017-07-25 10:20:23 +0000
commit4287b4e84c4af7a331d1b0a390ab3d97f37120c2 (patch)
tree1e38862eae269e11ace01ef2f2e920752af4cfce /gcc/ipa-visibility.c
parent99f089746928c9677fe57d9ae99b9f83d8a247c1 (diff)
Fix wrong condition in ipa-visibility.c (PR ipa/81520).
2017-07-25 Martin Liska <mliska@suse.cz> 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 <mliska@suse.cz> PR ipa/81520 * gcc.dg/ipa/pr81520.c: New test. From-SVN: r250501
Diffstat (limited to 'gcc/ipa-visibility.c')
-rw-r--r--gcc/ipa-visibility.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/gcc/ipa-visibility.c b/gcc/ipa-visibility.c
index 21321703dbb..13cf2a3a1cf 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<cgraph_node *> (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);