Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / 20031015-1.c
blob102715c0131e55bf15c3df35376b4e362cdcbdf3
1 /* With tree-ssa, gcc.dg/20000724-1.c failed because we missed
2 a VOP of x in the asm statement. */
3 /* { dg-do compile } */
4 /* { dg-options "-O1 -fdump-tree-alias-vops" } */
6 struct s { int a; };
8 int
9 main(void)
11 struct s x = { 0 };
12 asm volatile ("" : : "r" (&x) : "memory");
13 return 0;
16 /* The VDEF comes from the initial assignment and the asm. */
17 /* { dg-final { scan-tree-dump-times "DEF" 2 "alias" } } */
18 /* { dg-final { cleanup-tree-dump "alias" } } */