public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc(refs/users/marxin/heads/backport-11)] ipa: "naked" attribute implies "noipa" attribute
@ 2022-01-18 12:57 Martin Liska
  0 siblings, 0 replies; only message in thread
From: Martin Liska @ 2022-01-18 12:57 UTC (permalink / raw)
  To: gcc-cvs

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

commit b76e938a192da0da198d2f414070182f2506508d
Author: Martin Liska <mliska@suse.cz>
Date:   Thu Aug 12 17:26:51 2021 +0200

    ipa: "naked" attribute implies "noipa" attribute
    
            PR ipa/101354
    
    gcc/ChangeLog:
    
            * attribs.c (decl_attributes): Make naked functions "noipa"
              functions.
    
    (cherry picked from commit 4998404915bba9cb04c438a926cdf7126782a767)

Diff:
---
 gcc/attribs.c | 11 +++--------
 1 file changed, 3 insertions(+), 8 deletions(-)

diff --git a/gcc/attribs.c b/gcc/attribs.c
index ebc0783c439..47969bd7742 100644
--- a/gcc/attribs.c
+++ b/gcc/attribs.c
@@ -520,14 +520,9 @@ decl_attributes (tree *node, tree attributes, int flags,
   if (TREE_CODE (*node) == FUNCTION_DECL
       && attributes
       && lookup_attribute ("naked", attributes) != NULL
-      && lookup_attribute_spec (get_identifier ("naked")))
-    {
-      if (lookup_attribute ("noinline", attributes) == NULL)
-	attributes = tree_cons (get_identifier ("noinline"), NULL, attributes);
-
-      if (lookup_attribute ("noclone", attributes) == NULL)
-	attributes = tree_cons (get_identifier ("noclone"),  NULL, attributes);
-    }
+      && lookup_attribute_spec (get_identifier ("naked"))
+      && lookup_attribute ("noipa", attributes) == NULL)
+	attributes = tree_cons (get_identifier ("noipa"), NULL, attributes);
 
   /* A "noipa" function attribute implies "noinline", "noclone" and "no_icf"
      for those targets that support it.  */


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-01-18 12:57 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-18 12:57 [gcc(refs/users/marxin/heads/backport-11)] ipa: "naked" attribute implies "noipa" attribute Martin Liska

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).