summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2012-03-26 08:29:38 +0400
committerIvan Maidanski <ivmai@mail.ru>2012-03-26 16:38:39 +0400
commite741c4b79a5e6a7fa1216b42cf1596f9469ce916 (patch)
tree4d47cf707400910e05c1f48847cbbd45060e918e
parent91094f5d3aab4d912e3fc88da3fe9899ed725ead (diff)
downloadlibatomic_ops-e741c4b79a5e6a7fa1216b42cf1596f9469ce916.tar.gz
Fix a typo in comment in standard_ao_double_t.h
-rw-r--r--src/atomic_ops/sysdeps/standard_ao_double_t.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/atomic_ops/sysdeps/standard_ao_double_t.h b/src/atomic_ops/sysdeps/standard_ao_double_t.h
index e92424d..1a53912 100644
--- a/src/atomic_ops/sysdeps/standard_ao_double_t.h
+++ b/src/atomic_ops/sysdeps/standard_ao_double_t.h
@@ -1,8 +1,10 @@
-/* NEC LE-IT: For 64Bit OS we extend the double type to hold two int64's
-*
-* x86-64: __m128 serves as placeholder which also requires the compiler
-* to align it on 16 byte boundary (as required by cmpxchg16.
-* Similar things could be done for PowerPC 64bit using a VMX data type... */
+/*
+ * NEC LE-IT: For 64-bit OS we extend the double type to hold two int64's
+ *
+ * x86-64: __m128 serves as placeholder which also requires the compiler
+ * to align it on 16 byte boundary (as required by cmpxchg16).
+ * Similar things could be done for PowerPC 64-bit using a VMX data type...
+ */
#if (defined(__x86_64__) && defined(__GNUC__)) || defined(_WIN64)
# include <xmmintrin.h>