blob: aaa6090ddd7225b61e1bbbe3c3fa774285dcc6f2 (
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 run } */
/* { dg-options "-O -fipa-pta -fdump-ipa-pta-details" } */
static void __attribute__((noinline,noclone))
foo (int *p)
{
*p = 1;
}
extern void abort (void);
int main()
{
int i = 0;
foo (&i);
if (i != 1)
abort ();
return 0;
}
/* Verify we correctly compute the units ESCAPED set as empty but
still properly account for the store via *p in foo. */
/* { dg-final { scan-ipa-dump "ESCAPED = { }" "pta" } } */
/* { dg-final { cleanup-ipa-dump "pta" } } */
|