2012-02-17 Benjamin Kosnik <bkoz@redhat.com>
authorbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 21 Feb 2012 23:46:49 +0000 (23:46 +0000)
committerbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 21 Feb 2012 23:46:49 +0000 (23:46 +0000)
PR libstdc++/50349
* config/abi/pre/gnu.ver: Only one local.
* config/abi/pre/gnu-versioned-namespace.ver: Same.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@184453 138bc75d-0d04-0410-961f-82ee72b054a4

libstdc++-v3/ChangeLog
libstdc++-v3/config/abi/pre/gnu-versioned-namespace.ver
libstdc++-v3/config/abi/pre/gnu.ver

index 366d219..eee0392 100644 (file)
@@ -1,3 +1,9 @@
+2012-02-17  Benjamin Kosnik  <bkoz@redhat.com>
+
+       PR libstdc++/50349
+       * config/abi/pre/gnu.ver: Only one local.
+       * config/abi/pre/gnu-versioned-namespace.ver: Same.
+
 2012-02-21  Paolo Carlini  <paolo.carlini@oracle.com>
 
        PR libstdc++/52317 (cont)
index 2bd23cd..e7e9162 100644 (file)
@@ -312,15 +312,12 @@ CXXABI_2.0 {
     _ZTVN10__cxxabiv120__si_class_type_infoE;
     _ZTVN10__cxxabiv121__vmi_class_type_infoE;
 
-  local:
-    *;
 };
 
 # Symbols in the support library (libsupc++) supporting trans-mem.
 CXXABI_TM_1 {
+
   global:
     __cxa_tm_cleanup;
 
-  local:
-    *;
 };
index 41d38a7..9657024 100644 (file)
@@ -1421,8 +1421,6 @@ CXXABI_1.3 {
     # __gnu_cxx::_verbose_terminate_handler()
     _ZN9__gnu_cxx27__verbose_terminate_handlerEv;
 
-  local:
-    *;
 };
 
 CXXABI_1.3.1 {
@@ -1471,15 +1469,6 @@ CXXABI_1.3.3 {
 
 } CXXABI_1.3.2;
 
-# Symbols in the support library (libsupc++) supporting trans-mem.
-CXXABI_TM_1 {
-  global:
-    __cxa_tm_cleanup;
-
-  local:
-    *;
-};
-
 CXXABI_1.3.4 {
 
     # typeinfo for decimal floating point types
@@ -1521,3 +1510,12 @@ CXXABI_1.3.6 {
     __cxa_deleted_virtual;
 
 } CXXABI_1.3.5;
+
+
+# Symbols in the support library (libsupc++) supporting transactional memory.
+CXXABI_TM_1 {
+
+  global:
+    __cxa_tm_cleanup;
+
+};
\ No newline at end of file