compare-fp-2.c

来自「Mac OS X 10.4.9 for x86 Source Code gcc」· C语言 代码 · 共 25 行

C
25
字号
/* Copyright (C) 2004 Free Software Foundation.   Ensure that the composite comparison optimization doesn't misfire   and attempt to combine an integer comparison with a floating-point one.   Written by Paolo Bonzini, 26th May 2004.  */extern void abort (void);intfoo (double x, double y){  /* If miscompiled the following may become false.  */  return (x > y) && ((int)x == (int)y);}intmain (){  if (! foo (1.3,1.0))    abort ();  return 0;}

⌨️ 快捷键说明

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