Fix a typo in comment
authorIvan Maidanski <ivmai@mail.ru>
Wed, 7 Mar 2012 03:31:55 +0000 (07:31 +0400)
committerIvan Maidanski <ivmai@mail.ru>
Wed, 7 Mar 2012 13:32:21 +0000 (17:32 +0400)
* src/atomic_ops/sysdeps/gcc/x86.h
(AO_compare_double_and_swap_double_full): Fix argument name in the
comment.
* src/atomic_ops/sysdeps/sunc/x86.h
(AO_compare_double_and_swap_double_full): Likewise.

src/atomic_ops/sysdeps/gcc/x86.h
src/atomic_ops/sysdeps/sunc/x86.h

index 0c7d703..a2314b6 100644 (file)
@@ -187,7 +187,7 @@ AO_compare_double_and_swap_double_full(volatile AO_double_t *addr,
      GOT pointer.  We can save and restore %ebx because GCC won't be
      using it for anything else (such as any of the m operands) */
   __asm__ __volatile__("pushl %%ebx;"   /* save ebx used for PIC GOT ptr */
-                       "movl %6,%%ebx;" /* move new_val2 to %ebx */
+                       "movl %6,%%ebx;" /* move new_val1 to %ebx */
                        "lock; cmpxchg8b %0; setz %1;"
                        "pop %%ebx;"     /* restore %ebx */
                        : "=m"(*addr), "=a"(result)
index 7cad139..45f1d4a 100644 (file)
@@ -178,7 +178,7 @@ AO_compare_double_and_swap_double_full(volatile AO_double_t *addr,
      GOT pointer.  We can save and restore %ebx because GCC won't be
      using it for anything else (such as any of the m operands) */
   __asm__ __volatile__("pushl %%ebx;"   /* save ebx used for PIC GOT ptr */
-                       "movl %6,%%ebx;" /* move new_val2 to %ebx */
+                       "movl %6,%%ebx;" /* move new_val1 to %ebx */
                        "lock; cmpxchg8b %0; setz %1;"
                        "pop %%ebx;"     /* restore %ebx */
                        : "=m"(*addr), "=a"(result)