2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20001009-2.c
blobeedc299fbcb9734ebfb736ebda67bbcf28185dce
1 int b=1;
2 int foo()
4 int a;
5 int c;
6 a=0xff;
7 for (;b;b--)
9 c=1;
10 asm(""::"r"(c));
11 c=(signed char)a;
13 if (c!=-1)
14 abort();
15 return c;
17 int main()
19 foo();
20 return 0;