CMPLXF
#define CMPLXF(x, y) ((float complex){ x, y })
#define CMPLXF(x, y) __builtin_complex((float)(x), (float)(y))
CMPLXF(float x, float y)