20020321-1.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 21 行
C
21 行
/* PR 3177 *//* Produced a SIGILL on ia64 with sibcall from F to G. We hadn't widened the register window to allow for the fourth outgoing argument as an "in" register. */float g (void *a, void *b, int e, int c, float d){ return d;}float f (void *a, void *b, int c, float d){ return g (a, b, 0, c, d);}int main (){ f (0, 0, 1, 1); return 0;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?