re PR c++/79288 (TLS model wrong for static data members since r241137)
authorJakub Jelinek <jakub@redhat.com>
Wed, 15 Feb 2017 17:09:18 +0000 (18:09 +0100)
committerJakub Jelinek <jakub@gcc.gnu.org>
Wed, 15 Feb 2017 17:09:18 +0000 (18:09 +0100)
PR c++/79288
* decl.c (grokdeclarator): For static data members, handle thread_p
only after handling inline.

* g++.dg/tls/pr79288.C: New test.

From-SVN: r245488

gcc/cp/ChangeLog
gcc/cp/decl.c
gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/tls/pr79288.C [new file with mode: 0644]

index 7b94d3b03af6b90a0870dda657198def89dcc77a..74f5fc9b784511de5f21e749f75c60678bd8e6e7 100644 (file)
@@ -1,3 +1,9 @@
+2017-02-15  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c++/79288
+       * decl.c (grokdeclarator): For static data members, handle thread_p
+       only after handling inline.
+
 2017-02-14  Marek Polacek  <polacek@redhat.com>
 
        PR c++/79420
index 2292a3a2ac97abe3e01c1a0595940dd6ad6ee6ed..353e7b5d726df5779a9102ed5b2ce5f73cb7329e 100644 (file)
@@ -12063,14 +12063,6 @@ grokdeclarator (const cp_declarator *declarator,
                                            : input_location,
                                            VAR_DECL, unqualified_id, type);
                set_linkage_for_static_data_member (decl);
-               if (thread_p)
-                 {
-                   CP_DECL_THREAD_LOCAL_P (decl) = true;
-                   if (!processing_template_decl)
-                     set_decl_tls_model (decl, decl_default_tls_model (decl));
-                   if (declspecs->gnu_thread_keyword_p)
-                     SET_DECL_GNU_TLS_P (decl);
-                 }
                if (concept_p)
                    error ("static data member %qE declared %<concept%>",
                           unqualified_id);
@@ -12091,6 +12083,15 @@ grokdeclarator (const cp_declarator *declarator,
                     definition is provided, unless this is an inline
                     variable.  */
                  DECL_EXTERNAL (decl) = 1;
+
+               if (thread_p)
+                 {
+                   CP_DECL_THREAD_LOCAL_P (decl) = true;
+                   if (!processing_template_decl)
+                     set_decl_tls_model (decl, decl_default_tls_model (decl));
+                   if (declspecs->gnu_thread_keyword_p)
+                     SET_DECL_GNU_TLS_P (decl);
+                 }
              }
            else
              {
index d95221a0d2c29184ab2bcb8688b2430a9de25972..5df5da8827b59135421c7c442b5a9f2554b94c47 100644 (file)
@@ -1,3 +1,8 @@
+2017-02-15  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c++/79288
+       * g++.dg/tls/pr79288.C: New test.
+
 2017-02-15  Marek Polacek  <polacek@redhat.com>
 
        PR c/79515
diff --git a/gcc/testsuite/g++.dg/tls/pr79288.C b/gcc/testsuite/g++.dg/tls/pr79288.C
new file mode 100644 (file)
index 0000000..9f488df
--- /dev/null
@@ -0,0 +1,28 @@
+// PR c++/79288
+// { dg-do compile { target nonpic } }
+// { dg-require-effective-target tls }
+// { dg-options "-O2" }
+// { dg-final { scan-assembler-not "@tpoff" { target i?86-*-* x86_64-*-* } } }
+
+struct S
+{
+  static __thread int *p;
+};
+
+template <int N>
+struct T
+{
+  static __thread int *p;
+};
+
+int *
+foo ()
+{
+  return S::p;
+}
+
+int *
+bar ()
+{
+  return T<0>::p;
+}