blob: 39368707ce998a86d2836e46289b15588b6779b5 (
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
|
/* { dg-do compile } */
/* { dg-options "-O -fdump-tree-fre-details" } */
int *q;
void __attribute__((noinline))
bar (void)
{
*q = 1;
}
int foo(int which_p)
{
int x = 0;
int *i,*j;
int **p;
if (which_p)
p = &i;
else
p = &j;
*p = &x;
bar ();
return x;
}
/* { dg-final { scan-tree-dump "Replaced x with 0" "fre" } } */
/* { dg-final { cleanup-tree-dump "fre" } } */
|