pr22422.c

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

C
31
字号
/* We should not crash trying to figure out the points-to sets for the below.  We used to because we   ended up adding pointers to the points-to set of the ANYTHING variable.  */struct D{  int n;  int c [8];};struct A{  int i;  char *p;};struct B{  struct A *a;  struct D *d;};int dtInsert1 (struct B *b){  struct A a = { 0, 0 };  struct D *d;  b->a = &a;  d = b->d;  &d->c [d->n];  return 0;}

⌨️ 快捷键说明

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