compare-2.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 25 行
C
25 行
/* Copyright (C) 2002 Free Software Foundation. Ensure that the composite comparison optimization doesn't misfire and attempt to combine a signed comparison with an unsigned one. Written by Roger Sayle, 3rd June 2002. */extern void abort (void);intfoo (int x, int y){ /* If miscompiled the following may become "x == y". */ return (x<=y) && ((unsigned int)x >= (unsigned int)y);}intmain (){ if (! foo (-1,0)) abort (); return 0;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?