OSDN Git Service

* decl2.c (get_guard): Copy visibility from the guarded variable.
authorjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 7 Sep 2007 03:56:41 +0000 (03:56 +0000)
committerjason <jason@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 7 Sep 2007 03:56:41 +0000 (03:56 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@128226 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cp/ChangeLog
gcc/cp/decl2.c
gcc/testsuite/g++.dg/ext/visibility/guard1.C [new file with mode: 0644]

index 12cdd80..b5229b3 100644 (file)
@@ -1,3 +1,7 @@
+2007-09-06  Jason Merrill  <jason@redhat.com>
+
+       * decl2.c (get_guard): Copy visibility from the guarded variable.
+
 2007-09-06  Jan Hubicka  <jh@suse.cz>
 
        * semantics.c (expand_body): Do not mark arguments of clones used.
index 2708e58..db578d8 100644 (file)
@@ -2215,6 +2215,8 @@ get_guard (tree decl)
       DECL_ONE_ONLY (guard) = DECL_ONE_ONLY (decl);
       if (TREE_PUBLIC (decl))
        DECL_WEAK (guard) = DECL_WEAK (decl);
+      DECL_VISIBILITY (guard) = DECL_VISIBILITY (decl);
+      DECL_VISIBILITY_SPECIFIED (guard) = DECL_VISIBILITY_SPECIFIED (decl);
 
       DECL_ARTIFICIAL (guard) = 1;
       DECL_IGNORED_P (guard) = 1;
diff --git a/gcc/testsuite/g++.dg/ext/visibility/guard1.C b/gcc/testsuite/g++.dg/ext/visibility/guard1.C
new file mode 100644 (file)
index 0000000..5290e2f
--- /dev/null
@@ -0,0 +1,29 @@
+// { dg-options "-fvisibility=hidden" }
+// { dg-require-visibility "" }
+// { dg-final { scan-not-hidden "_ZGVZN5otherclEvE4s_cd" } }
+
+extern "C" int printf (const char *, ...);
+
+#define DLLEXPORT __attribute__ ((visibility("default")))
+
+struct class_data
+{
+  int apple;
+  class_data() { printf("non trivial ctor\n"); }
+};
+
+struct DLLEXPORT other
+{
+  class_data* operator ()()
+  {
+    static class_data s_cd;
+    return &s_cd;
+  }
+};
+
+int main()
+{
+  other aFoo;
+  aFoo();
+  return 0;
+}