Mercurial > hg > CbC > CbC_gcc
annotate gcc/testsuite/gcc.dg/attr-may-alias-1.c @ 111:04ced10e8804
gcc 7
author | kono |
---|---|
date | Fri, 27 Oct 2017 22:46:09 +0900 |
parents | |
children |
rev | line source |
---|---|
111 | 1 /* { dg-do compile } */ |
2 /* { dg-options "-O2" } */ | |
3 /* { dg-final { scan-assembler "dont_delete" } } */ | |
4 | |
5 typedef struct { int x; } __attribute__((may_alias)) S; | |
6 | |
7 extern void dont_delete (void); | |
8 | |
9 void f(S *s, float *f) | |
10 { | |
11 s->x = 1; | |
12 *f = 0; | |
13 if (s->x != 1) | |
14 dont_delete (); | |
15 } |