OSDN Git Service

* gcc.c-torture/execute/20040208-2.c: Move ...
[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 }