struct-by-value-2.c

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

C
16
字号
/* This testcase caused a sanity check to abort on SPARC64   because of a discrepancy between two functions involved   in the calculation of structure layout.  *//* { dg-do compile } */struct S { float f1; int i1; int i2; float f2; };extern void foo(struct S);void bar(void){  struct S s;  foo(s);}

⌨️ 快捷键说明

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