20020720-1.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 37 行
C
37 行
/* Copyright (C) 2002 Free Software Foundation. Ensure that fabs(x) < 0.0 optimization is working. Written by Roger Sayle, 20th July 2002. */extern void abort (void);extern double fabs (double);extern void link_error (void);voidfoo (double x){ double p, q; p = fabs (x); q = 0.0; if (p < q) link_error ();}intmain(){ foo (1.0); return 0;}#ifndef __OPTIMIZE__voidlink_error (){ abort ();}#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?