⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wo_prof_mult_field_peeling.c

📁 用于进行gcc测试
💻 C
字号:
/* { dg-do compile } *//* { dg-do run } */#include <stdlib.h>typedef struct{  int a;  float b;  int c;  float d;}str_t;#define N 100int main (){  int i;  str_t *p = malloc (N * sizeof (str_t));  for (i = 0; i < N; i++)    p[i].a = 5;  for (i = 0; i < N; i++)    if (p[i].a != 5)            abort ();  return 0;}/*--------------------------------------------------------------------------*//* The structure str_t is erroneously peeled into 4 structures instead of 2.  *//* { dg-final { scan-ipa-dump "the number of new types is 2" "ipa_struct_reorg" { xfail *-*-* } } } *//* { dg-final { cleanup-ipa-dump "*" } } */

⌨️ 快捷键说明

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