20051228-1.c
来自「用于进行gcc测试」· C语言 代码 · 共 11 行
C
11 行
/* PR target/25554 *//* Bitwise shift with negative shift count has undefined behavior, but we shouldn't ICE on it. */voidfoo (long x){ if (((x >> -2) & 1) != 0) bar ();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?