991230-1.c

来自「this is a gcc file, you can download it 」· C语言 代码 · 共 24 行

C
24
字号
/* { dg-do run { target i?86-*-* } } *//* { dg-options "-O -ffast-math -mcpu=i486" } *//* Test that floating point greater-than tests are compiled correctly with   -ffast-math.  */extern void abort (void);static int gt (double a, double b){  if (a > b)    return 4;  return 0;}static double zero = 0.0;int main (){  if (gt (zero, zero))    abort ();  return 0;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?