示例代码:
#include <stdio.h>
#define __STDC_WANT_IEC_60559_TYPES_EXT__
#include <float.h>
#ifdef FLT16_MAX
_Float16 f16;
int main(void)
{
printf("%f\n", f16);
return 0;
}
#endif
调用:
# gcc trunk on linux on x86_64
$ gcc t0.c -std=c11 -Wall
预期诊断:
<nothing>
实际诊断:
t0.c:9:14: warning: format '%f' expects argument of type 'double', but argument 2 has type '_Float16' [-Wformat=]
9 | printf("%f\n", f16);
| ~^ ~~~
| | |
| | _Float16
| double
这是否意味着在__STDC_WANT_IEC_60559_TYPES_EXT__
AND 下如果FLT16_MAX
定义了 gcc 不知道printf
可以与 一起使用_Float16
?它应该意识到吗?
另外:printf("%f\n", f);
when f
is afloat
导致上面没有警告,尽管format '%f' expects argument of type 'double', but argument 2 has type 'float'
. 使困惑。