types-2.c

来自「用于进行gcc测试」· C语言 代码 · 共 21 行

C
21
字号
/* { dg-do run { target ia64*-hp-hpux* } } *//* { dg-options } *//* Test that the sizes and alignments of the extra floating-point   types are correct.  */int main () {  if (sizeof (__fpreg) != 16)    return 1;  if (__alignof__ (__fpreg) != 16)    return 2;  if (sizeof (__float80) != 16)    return 3;  if (__alignof__ (__float80) != 16)    return 4;  return 0;}

⌨️ 快捷键说明

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