PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / attr-may-alias-1.c
blob30e2bca6f48e9d033287457f4651bc9127ae9bda
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3 /* { dg-final { scan-assembler "dont_delete" } } */
5 typedef struct { int x; } __attribute__((may_alias)) S;
7 extern void dont_delete (void);
9 void f(S *s, float *f)
11 s->x = 1;
12 *f = 0;
13 if (s->x != 1)
14 dont_delete ();