blob: 668c6c288313eb919a899697b0c405960a81dd98 (
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 compile } */
/* { dg-options "-O2 -fdump-tree-optimized" } */
struct a
{
int b;
int c;
};
__attribute__ ((noclone, noinline))
void
test (struct a *a)
{
a->b = 2;
}
int
foo ()
{
struct a a = {113,114};
test (&a);
return a.c;
}
int
foo2 (struct a *a)
{
a->b = 123;
a->c = 124;
test (a);
return a->c;
}
/* { dg-final { scan-tree-dump "return 114" "optimized"} } */
/* { dg-final { scan-tree-dump "return 124" "optimized"} } */
|