public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
From: Martin Liska <marxin@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org
Subject: [gcc(refs/users/marxin/heads/backport-11)] ipa: do not make localaliases for target_clones [PR101261]
Date: Mon, 16 Aug 2021 08:24:56 +0000 (GMT)	[thread overview]
Message-ID: <20210816082456.EED83389F4ED@sourceware.org> (raw)

https://gcc.gnu.org/g:fbe246620e2fa5b5968718837ae4c12fdb85ba39

commit fbe246620e2fa5b5968718837ae4c12fdb85ba39
Author: Martin Liska <mliska@suse.cz>
Date:   Fri Aug 13 11:10:56 2021 +0200

    ipa: do not make localaliases for target_clones [PR101261]
    
            PR ipa/101261
    
    gcc/ChangeLog:
    
            * symtab.c (symtab_node::noninterposable_alias): Do not create
              local aliases for target_clone functions as the clonning pass
              rejects aliases.
    
    gcc/testsuite/ChangeLog:
    
            * gcc.target/i386/pr101261.c: New test.

Diff:
---
 gcc/symtab.c                             |  2 ++
 gcc/testsuite/gcc.target/i386/pr101261.c | 11 +++++++++++
 2 files changed, 13 insertions(+)

diff --git a/gcc/symtab.c b/gcc/symtab.c
index 2135b34ce27..5530a124a9d 100644
--- a/gcc/symtab.c
+++ b/gcc/symtab.c
@@ -1959,6 +1959,8 @@ symtab_node::noninterposable_alias (void)
   /* If aliases aren't supported by the assembler, fail.  */
   if (!TARGET_SUPPORTS_ALIASES)
     return NULL;
+  else if (lookup_attribute ("target_clones", DECL_ATTRIBUTES (node->decl)))
+    return NULL;
 
   /* Otherwise create a new one.  */
   new_decl = copy_node (node->decl);
diff --git a/gcc/testsuite/gcc.target/i386/pr101261.c b/gcc/testsuite/gcc.target/i386/pr101261.c
new file mode 100644
index 00000000000..d25d1a202c2
--- /dev/null
+++ b/gcc/testsuite/gcc.target/i386/pr101261.c
@@ -0,0 +1,11 @@
+/* PR middle-end/101261 */
+/* { dg-do compile { target fpic } } */
+/* { dg-options "-fno-semantic-interposition -fPIC" } */
+/* { dg-require-ifunc "" } */
+
+void
+__attribute__((target_clones("default", "avx2")))
+dt_ioppr_transform_image_colorspace()
+{
+  dt_ioppr_transform_image_colorspace();
+}


                 reply	other threads:[~2021-08-16  8:24 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210816082456.EED83389F4ED@sourceware.org \
    --to=marxin@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).