* doc/posix-headers/stdalign.texi: Document this.
* lib/stdalign.in.h (_Alignas): Sun C 5.9 also supports
__attribute__ ((__aligned__ (...))).
+2015-10-25 Paul Eggert <eggert@cs.ucla.edu>
+
+ stdalign: port to Sun C 5.9
+ * doc/posix-headers/stdalign.texi: Document this.
+ * lib/stdalign.in.h (_Alignas): Sun C 5.9 also supports
+ __attribute__ ((__aligned__ (...))).
+
2015-10-20 Paul Eggert <eggert@cs.ucla.edu>
time_rz: fix comment about tzalloc
@code{_Alignas} and @code{alignas} are not always supported;
on platforms lacking support, the
macro @code{__alignas_is_defined} is not defined.
-Supported compilers include GCC, IBM C, Sun C 5.11 and later,
+Supported compilers include GCC, IBM C, Sun C 5.9 and later,
and MSVC 7.0 and later.
@item
Some compilers do not support alignment via
? 4 < __GNUC__ + (1 <= __GNUC_MINOR__) \
: __GNUC__) \
|| __HP_cc || __HP_aCC || __IBMC__ || __IBMCPP__ \
- || __ICC || 0x5110 <= __SUNPRO_C)
+ || __ICC || 0x590 <= __SUNPRO_C)
# define _Alignas(a) __attribute__ ((__aligned__ (a)))
# elif 1300 <= _MSC_VER
# define _Alignas(a) __declspec (align (a))