20011217-2.c
来自「gcc3.2.1源代码」· C语言 代码 · 共 20 行
C
20 行
/* Test that the initializer of a compound literal is properly walked when tree inlining. *//* Origin: glibc (as reported in PR c/5105) from <aj@suse.de>. */inline intfinite (double __x){ return (__extension__ (((((union { double __d; int __i[2]; }) {__d: __x}).__i[1] | 0x800fffffu) + 1) >> 31));}intmain (void){ double x = 1.0; return finite (x);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?