summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/ipa/ipa-ea-04-collect-parameters-0.c
blob: 5f952afe739b3bb80301fa3227e97aebd73b967f (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
31
/* { 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;};

void record_parameter(struct astruct_s a) {}
void pointer_parameter(struct astruct_s *a) {}
void array_parameter(struct astruct_s a[]) {}


int
main ()
{
}

// We have a complete type, probably from record_parameter
/* { dg-final { scan-wpa-ipa-dump "collected:  record astruct_s .boolean_type a.boolean_type b.boolean_type c.." "type-escape-analysis" } } */
// Now we have an incomplete struct
/* { dg-final { scan-wpa-ipa-dump "collected:  record astruct_s .." "type-escape-analysis" } } */
// This is the pointer...
/* { dg-final { scan-wpa-ipa-dump "collected:  record astruct_s ..." "type-escape-analysis" } } */
// We are missing the array parameter
// But it seems that the array parameter is passed as a pointer, which makes sense...
// array_parameter (struct astruct_s * a)
// {
//   <bb 2> :
//   return;
//
// }