20021018-1.c

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

C
22
字号
/* { dg-do run } *//* { dg-options "-O2 -fpic" } */extern void abort (void);extern void exit (int);static const long foo [10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };long __attribute__((noinline))bar (int x){  return foo [x - 0x6ffffffa];}intmain (void){  if (bar (0x6ffffffc) != 2)    abort ();  exit (0);}

⌨️ 快捷键说明

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