blob: 2c05347c641df2fa4ee0940c7efc9ffbf2c1eeed (
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
|
/* { dg-do run } */
/* { dg-options "-O2 -fipa-sra -fdump-tree-eipa_sra-details" } */
struct bovid
{
float red;
int green;
void *blue;
};
extern int printf (const char *, ...);
extern void abort (void);
static int
__attribute__((noinline))
ox (struct bovid cow)
{
if (cow.green != 6)
abort ();
printf ("green: %f\nblue: %p\nblue again: %p\n", cow.green,
cow.blue, cow.blue);
return 0;
}
int
main (int argc, char *argv[])
{
struct bovid cow;
cow.red = 7.4;
cow.green = 6;
cow.blue = &cow;
ox (cow);
return 0;
}
/* { dg-final { scan-tree-dump-times "About to replace expr" 2 "eipa_sra" } } */
/* { dg-final { cleanup-tree-dump "eipa_sra" } } */
|