summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/ipa/ipa-structreorg-05-nested-struct-0.c
blob: 9e5ebfddc991405b3d081302041d4139017fb225 (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
27
28
29
30
/* { dg-do link } */
/* { dg-options  "-flto -fipa-type-escape-analysis -fdump-ipa-type-escape-analysis -fprint-access-analysis " } */

#include <stdio.h>

struct astruct_s
{
  float a;
  _Bool b;
  int c;
};
struct ostruct_s
{
  struct astruct_s a;
  float b;
  float c;
};
struct ostruct_s ostruct;

int
main ()
{
  printf ("%d\n", ostruct.b);
  printf ("%d\n", ostruct.c);
  printf ("%f\n", ostruct.a.a);
  printf ("%d\n", ostruct.a.c);
}

/* { dg-final { scan-ipa-dump " record astruct_s .real_type a;boolean_type b;integer_type c;. ->  record astruct_s .real_type a;integer_type c;." "type-escape-analysis" } } */
/* { dg-final { scan-ipa-dump " record ostruct_s . record astruct_s .real_type a;boolean_type b;integer_type c;. a;real_type b;real_type c;. ->  record ostruct_s . record astruct_s .real_type a;integer_type c;. a;real_type b;real_type c;." "type-escape-analysis" } } */