blob: 8f116df4d014a08c069da6f9966d198f65ffac32 (
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
32
33
34
35
36
37
38
39
40
41
42
43
|
/* { dg-do compile } */
/* { dg-do run } */
#include <stdlib.h>
typedef struct
{
int a;
float b;
int c;
float d;
}str_t;
#ifdef STACK_SIZE
#if STACK_SIZE > 1600
#define N 100
#else
#define N (STACK_SIZE/16)
#endif
#else
#define N 100
#endif
int
main ()
{
int i;
str_t *p = malloc (N * sizeof (str_t));
if (p == NULL)
return 0;
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 "*" } } */
|