Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / tree-ssa / inline_asm-1.c
bloba08f2abefdcd0ac2bb4174cb6903eb364d41e0b0
1 /* { dg-do compile } */
2 /* { dg-options "-O1 -fdump-tree-optimized -fdump-tree-alias1-vops" } */
3 /* Test to make sure that inline-asm causes a V_MAY_DEF and that we call test_function twice. */
5 char test_function(void ) __attribute__((__pure__));
6 char f(char *a)
8 char b = test_function();
9 asm("":"=m"(*a):"r"(b));
10 b = test_function();
11 return b;
14 /* test_function should be called twice as the inline-asm changes memory. */
15 /* { dg-final { scan-tree-dump-times "test_function" 2 "optimized"} } */
16 /* { dg-final { cleanup-tree-dump "optimized" } } */
18 /* There should a V_MAY_DEF for the inline-asm. */
19 /* { dg-final { scan-tree-dump-times "V_MAY_DEF" 1 "alias1"} } */
20 /* { dg-final { cleanup-tree-dump "alias1" } } */