OSDN Git Service

2011-12-19 Benjamin Kosnik <bkoz@redhat.com>
authorbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 20 Dec 2011 00:16:25 +0000 (00:16 +0000)
committerbkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 20 Dec 2011 00:16:25 +0000 (00:16 +0000)
* libsupc++/eh_tm.cc (free_any_cxa_exception): Use
__GCC_ATOMIC_INT_LOCK_FREE, not _GLIBCXX_ATOMIC_BUILTINS_4.

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

libstdc++-v3/ChangeLog
libstdc++-v3/libsupc++/eh_tm.cc

index 07a8d7f..904b66a 100644 (file)
@@ -1,5 +1,10 @@
 2011-12-19  Benjamin Kosnik  <bkoz@redhat.com>
 
+       * libsupc++/eh_tm.cc (free_any_cxa_exception): Use
+       __GCC_ATOMIC_INT_LOCK_FREE, not _GLIBCXX_ATOMIC_BUILTINS_4.
+
+2011-12-19  Benjamin Kosnik  <bkoz@redhat.com>
+
        * testsuite/performance/25_algorithms/search_n.cc: Disambiguate
        local variable.
 
index a646102..1df8644 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*- Exception handling routines for Transactional Memory.
-// Copyright (C) 2009 Free Software Foundation, Inc.
+// Copyright (C) 2009, 2011 Free Software Foundation, Inc.
 //
 // This file is part of GCC.
 //
@@ -45,7 +45,7 @@ free_any_cxa_exception (_Unwind_Exception *eo)
       __cxa_free_dependent_exception (dep);
     }
 
-#ifdef _GLIBCXX_ATOMIC_BUILTINS_4
+#if __GCC_ATOMIC_INT_LOCK_FREE > 1
   if (__sync_sub_and_fetch (&h->referenceCount, 1) == 0)
 #endif
     __cxa_free_exception (h + 1);