2001-02-19 Andreas Jaeger <aj@suse.de>
authoraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 19 Feb 2001 15:41:46 +0000 (15:41 +0000)
committeraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 19 Feb 2001 15:41:46 +0000 (15:41 +0000)
* config/cpu/sparc/sparc64/bits/atomicity.h (__compare_and_swap):
Fix typo.

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

libstdc++-v3/ChangeLog
libstdc++-v3/config/cpu/sparc/sparc64/bits/atomicity.h

index 6203763..629c73c 100644 (file)
@@ -1,3 +1,8 @@
+2001-02-19  Andreas Jaeger  <aj@suse.de>
+
+       * config/cpu/sparc/sparc64/bits/atomicity.h (__compare_and_swap):
+       Fix typo.
+
 2001-02-16  Greg Bumgardner <bumgard@roguewave.com>
 
        libstdc++/1734
index 4257e83..c00c5e2 100644 (file)
@@ -1,5 +1,5 @@
 /* Low-level functions for atomic operations.  Sparc64 version.
-   Copyright (C) 1999 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2001 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -61,7 +61,7 @@ static inline int
 __attribute__ ((__unused__))
 __compare_and_swap (volatile long *__p, long __oldval, long __newval)
 {
-  register int __tmp
+  register int __tmp;
   register long __tmp2;
 
   __asm__ __volatile__("1:     ldx     [%4], %0\n\t"