Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / compile / 20000827-1.c
bloba985f908b2b6c9454b19f05ff5d379eed317a957
1 /* Copyright (C) 2000 Free Software Foundation */
2 /* Contributed by Alexandre Oliva <aoliva@redhat.com> */
4 int
5 foo ()
7 while (1)
9 int a;
10 char b;
11 /* gcse should not merge these asm statements, since their
12 output operands have different modes. */
13 __asm__("":"=r" (a)); __asm__("":"=r" (b));
14 if (b)
15 return a;