fp8-helpers-neon.c uses _Static_assert, but the compiler warns that
this feature is not present in C90. Annotate it as an __extension__
to silence the warning, preserving the intent of the test.
for gcc/testsuite/ChangeLog
* gcc.target/aarch64/acle/fp8-helpers-neon.c: Silence
warnings about _Static_assert.
{
#define _S_EQ(expr, expected) \
- _Static_assert (expr == expected, #expr " == " #expected)
+ __extension__ _Static_assert (expr == expected, #expr " == " #expected)
_S_EQ (__arm_fpm_init (), 0);