New test.

From-SVN: r46637
This commit is contained in:
Jakub Jelinek 2001-10-30 13:45:11 +01:00
parent 3d23824843
commit 9bf85ba535
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
/* { dg-do compile { target i?86-*-* } } */
/* { dg-options "-O2" } */
int foo (int s)
{
for (;;)
{
int a[32];
int y, z;
__asm__ __volatile__ ("" : "=c" (y), "=D" (z)
: "a" (0), "0" (32), "1" (a) : "memory");
if (({ register char r;
__asm__ __volatile__ ("" : "=q" (r)
: "r" (s % 32), "m" (a[s / 32])
: "cc"); r; }))
continue;
else if (({ register char r;
__asm__ __volatile__ ("" : "=q" (r)
: "r" (0), "m" (a)
: "cc"); r; }))
continue;
}
}