]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gcc.dg/c11-floatn-7.c
testsuite: Refer more consistently to C23 not C2X
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / c11-floatn-7.c
1 /* { dg-do compile } */
2 /* { dg-options "-std=c11 -Wc11-c23-compat" } */
3 /* { dg-add-options float16 } */
4 /* { dg-require-effective-target float16 } */
5
6 _Float16 a /* { dg-warning "ISO C does not support the '_Float16' type before C23" } */
7 = 1.0F16; /* { dg-warning "non-standard suffix on floating constant before C23" } */
8 __extension__ _Float16 b
9 = 2.0F16;