* lib/stdalign.in.h (_Alignas): Port better to older HP and IBM
C compilers, by checking their version numbers. These version
numbers appear in MariaDB and in Qt code that dates way back and
that conditiionally uses the 'aligned' attribute.
+2016-02-10 Paul Eggert <eggert@cs.ucla.edu>
+
+ stdalign: port to older HP and IBM cc
+ * lib/stdalign.in.h (_Alignas): Port better to older HP and IBM
+ C compilers, by checking their version numbers. These version
+ numbers appear in MariaDB and in Qt code that dates way back and
+ that conditiionally uses the 'aligned' attribute.
+
2016-02-09 Paul Eggert <eggert@cs.ucla.edu>
stdalign: port to clang 3.7.0
# elif ((defined __APPLE__ && defined __MACH__ \
? 4 < __GNUC__ + (1 <= __GNUC_MINOR__) \
: __GNUC__) \
- || __HP_cc || __HP_aCC || __IBMC__ || __IBMCPP__ \
- || __ICC || 0x590 <= __SUNPRO_C)
+ || 061200 <= __HP_cc || 061200 <= __HP_aCC \
+ || __ICC || 0x590 <= __SUNPRO_C || 0x0600 <= __xlC__)
# define _Alignas(a) __attribute__ ((__aligned__ (a)))
# elif 1300 <= _MSC_VER
# define _Alignas(a) __declspec (align (a))