]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
c: check if target_clone attrs are all string
authorMartin Liska <mliska@suse.cz>
Tue, 27 Dec 2022 15:31:57 +0000 (16:31 +0100)
committerMartin Liska <mliska@suse.cz>
Mon, 9 Jan 2023 10:49:31 +0000 (11:49 +0100)
PR c/107993

gcc/c-family/ChangeLog:

* c-attribs.cc (handle_target_clones_attribute): Check for
string constant for all target_clone attribute values.

gcc/testsuite/ChangeLog:

* gcc.target/i386/pr107993.c: New test.

gcc/c-family/c-attribs.cc
gcc/testsuite/gcc.target/i386/pr107993.c [new file with mode: 0644]

index b36dd97802b9c2003afdbe67a120aba322d2766c..33d84cb6e073cdd6e6a0a70d4f469df6604f89ce 100644 (file)
@@ -5574,12 +5574,18 @@ handle_target_clones_attribute (tree *node, tree name, tree ARG_UNUSED (args),
   /* Ensure we have a function type.  */
   if (TREE_CODE (*node) == FUNCTION_DECL)
     {
-      if (TREE_CODE (TREE_VALUE (args)) != STRING_CST)
+      for (tree t = args; t != NULL_TREE; t = TREE_CHAIN (t))
        {
-         error ("%qE attribute argument not a string constant", name);
-         *no_add_attrs = true;
+         tree value = TREE_VALUE (t);
+         if (TREE_CODE (value) != STRING_CST)
+           {
+             error ("%qE attribute argument not a string constant", name);
+             *no_add_attrs = true;
+             return NULL_TREE;
+           }
        }
-      else if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (*node)))
+
+      if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (*node)))
        {
          warning (OPT_Wattributes, "%qE attribute ignored due to conflict "
                   "with %qs attribute", name, "always_inline");
diff --git a/gcc/testsuite/gcc.target/i386/pr107993.c b/gcc/testsuite/gcc.target/i386/pr107993.c
new file mode 100644 (file)
index 0000000..b0b84a6
--- /dev/null
@@ -0,0 +1,9 @@
+/* PR c/107993 */
+/* { dg-do compile } */
+
+typedef union { int x; } u;
+__attribute__((target_clones("arch=alderlake",!"default")))
+int f (u *x)
+{ /* { dg-error ".target_clones. attribute argument not a string constant" } */
+  return 0;
+}