No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / gcc.dg / tree-ssa / pr16721.c
blobeec753405c773f9e237f51c4eb7b8d41d1512992
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fno-strict-aliasing -fdump-tree-optimized" } */
4 struct data {
5 volatile unsigned long *addr;
6 } *p;
8 int test()
10 *p->addr;
11 return 0;
14 /* The load from p->addr should not disappear. */
15 /* { dg-final { scan-tree-dump-times "\->addr" 1 "optimized"} } */
16 /* { dg-final { cleanup-tree-dump "optimized" } } */