OSDN Git Service

Fix PR 17408 and PR 17409.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / execute / 20030128-1.c
1 unsigned char x = 50;
2 volatile short y = -5;
3
4 int main ()
5 {
6   x /= y;
7   if (x != (unsigned char) -10)
8     abort ();
9   exit (0);
10 }