Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / 990130-1.c
blobc38ecddbe596bae136d54f9b70d8d26ecdd0ab48
1 int count = 0;
2 int dummy;
4 static int *
5 bar(void)
7 ++count;
8 return &dummy;
11 static void
12 foo(void)
14 asm("" : "+r"(*bar()));
17 main()
19 foo();
20 if (count != 1)
21 abort();
22 exit(0);