Merge from the pain train
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / inline_asm-2.c
blobbc4039f878f9e353a07c66a2865521ed79416a7e
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fdump-tree-alias1-vops" } */
3 /* Test to make sure that inline-asm causes a V_MAY_DEF. */
6 void link_error();
7 void f(char *a)
9 int *a1 = (int *)a;
10 if (*a == 0)
11 asm("":"=m"(*a1));
12 if (*a == 0)
13 link_error ();
16 /* There should a V_MAY_DEF for the inline-asm. */
17 /* { dg-final { scan-tree-dump-times "V_MAY_DEF" 1 "alias1"} } */