summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/ipa/ipa-ea-03-collect-nested-record-0.c
blob: efba2e5b33c454381c4f1fecc3ba89c1b8dbe33d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* { dg-do link } */
/* { dg-options  "-fipa-type-escape-analysis -fdump-ipa-type-escape-analysis -fprint-escape-analysis" } */

#include <stddef.h>

struct astruct_s
{
  _Bool a;
  _Bool b;
  _Bool c;
};
struct outer_struct
{
  _Bool d;
  struct astruct_s a;
};
struct outer_struct bstruct;

int
main ()
{
  bstruct.d = 0;
}

// We only care about collecting the inner struct for this test
/* { dg-final { scan-ipa-dump "collected:  record astruct_s .boolean_type a.boolean_type b.boolean_type c.." "type-escape-analysis" } } */