* tests/test-stdalign.c (main): Skip alignas tests with AIX xlclang.
+2020-08-20 Bruno Haible <bruno@clisp.org>
+
+ stdalign tests: Skip test with AIX xlclang.
+ * tests/test-stdalign.c (main): Skip alignas tests with AIX xlclang.
+
2020-08-20 Bruno Haible <bruno@clisp.org>
stdalign: Fix test failures on 32-bit platforms with clang versions < 8.
https://lists.gnu.org/r/bug-gnulib/2017-03/msg00078.html */
fputs ("Skipping test: known HP-UX Itanium cc compiler bug\n", stderr);
return 77;
+#elif defined __clang__ && defined __ibmxl__
+ /* Avoid a test failure with IBM xlc 16.1. It ignores alignas (8),
+ _Alignas (8), and __attribute__ ((__aligned__ (8))). */
+ fputs ("Skipping test: known AIX XL C compiler deficiency\n", stderr);
+ return 77;
#else
CHECK_ALIGNED (static_char_alignas);
CHECK_ALIGNED (static_char_Alignas);