Extended Description
The following test case does not compile with clang (and also causes failures to configure projects when -mfloat128 is in the FLAGS):
#include <math.h>
__CFLOAT128 testkf(__CFLOAT128 a, __CFLOAT128 b) {
return a + b;
}
$ clang -I /opt/at12.0/include -S -mfloat128 -mcpu=power9 noKC.c -O
In file included from noKC.c:1:
In file included from /opt/at12.0/include/math.h:43:
/opt/at12.0/include/bits/floatn.h:82:52: error: unknown machine mode 'KC'
typedef _Complex float __cfloat128 attribute ((mode (KC)));
^
1 error generated.