blob: 6db80db89f307a0bb2833c6f58cb3b7144987736 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* PR tree-optimization/71872 */
struct __attribute__((may_alias)) S { int a; };
void
foo (int *x, struct S *y)
{
int i;
for (i = 0; i < 16; i++)
{
int a = 0;
if (*x)
*(struct S *) y = *(struct S *) &a;
}
}
|