20041109-1.c

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

C
22
字号
/* This used to ICE due to a literal pool handling bug on s390x.  *//* { dg-do compile { target s390*-*-* } } *//* { dg-options "-O2 -fno-omit-frame-pointer" } */static struct table { int x; } table[3];int test (void){  struct table *t;  for (t = table; t < &table[3]; t++)    asm volatile ("" : : : "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "12");  for (t = table; t < &table[3]; t++)    if (t->x)      return 1;  return 0;}

⌨️ 快捷键说明

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