📄 compare-fp-2.c
字号:
/* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -