1 /* Tests for _FloatN / _FloatNx types: test max_align_t alignment.
2 Before including this file, define WIDTH as the value N; define EXT
3 to 1 for _FloatNx and 0 for _FloatN. */
5 #define CONCATX(X, Y) X ## Y
6 #define CONCAT(X, Y) CONCATX (X, Y)
7 #define CONCAT3(X, Y, Z) CONCAT (CONCAT (X, Y), Z)
10 # define TYPE CONCAT3 (_Float, WIDTH, x)
12 # define TYPE CONCAT (_Float, WIDTH)
17 _Static_assert (_Alignof (max_align_t
) >= _Alignof (TYPE
),
18 "max_align_t must be at least as aligned as _Float* types");