]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
atomicity.h: Change _GLIBCXX_INST_GLIBCXX_ATOMICITY_LOCK to _GLIBCXX_INST_ATOMICITY_L...
authorSteve Ellcey <sje@cup.hp.com>
Wed, 23 Jul 2003 21:17:43 +0000 (21:17 +0000)
committerSteve Ellcey <sje@gcc.gnu.org>
Wed, 23 Jul 2003 21:17:43 +0000 (21:17 +0000)
* config/cpu/hppa/atomicity.h: Change
_GLIBCXX_INST_GLIBCXX_ATOMICITY_LOCK to _GLIBCXX_INST_ATOMICITY_LOCK
to match misc-inst.cc

From-SVN: r69720

libstdc++-v3/ChangeLog
libstdc++-v3/config/cpu/hppa/atomicity.h

index fcbbee7f0ea4e03609b458184c2bba40af35f98f..d6ea34c3a9baebdf6f3f50cf66f6db415a5a5c0d 100644 (file)
@@ -1,3 +1,9 @@
+2003-07-23  Steve Ellcey  <sje@cup.hp.com>
+
+       * config/cpu/hppa/atomicity.h: Change
+       _GLIBCXX_INST_GLIBCXX_ATOMICITY_LOCK to _GLIBCXX_INST_ATOMICITY_LOCK
+       to match misc-inst.cc
+
 2003-07-23  Steve Ellcey  <sje@cup.hp.com>
 
        * include/c_std/cmath.tcc: Use _GLIBCXX_ prefix on file guard.
index 7e527ef6c5f346cb8dc555b7a9fa2ef296452922..a717ab555a48606859e8a516f2f8c15d0dc93d08 100644 (file)
@@ -34,9 +34,9 @@ __Atomicity_lock<__inst>::_S_atomicity_lock __attribute__ ((aligned (16))) = 1;
 
 /* Because of the lack of weak support when using the hpux
    som linker, we explicitly instantiate the atomicity lock
-   in src/misc-inst.cc when _GLIBCXX_INST_GLIBCXX_ATOMICITY_LOCK
+   in src/misc-inst.cc when _GLIBCXX_INST_ATOMICITY_LOCK
    is defined.  */
-#ifndef _GLIBCXX_INST_GLIBCXX_ATOMICITY_LOCK
+#ifndef _GLIBCXX_INST_ATOMICITY_LOCK
 template volatile int __Atomicity_lock<0>::_S_atomicity_lock;
 #endif