OSDN Git Service

* gcc.c-torture/execute/20000412-1.c: Reduce some more.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / execute / 980602-2.c
1 struct {
2     unsigned bit : 30;
3 } t;
4
5 int main()
6 {
7     if (!(t.bit++))
8         exit (0);
9     else
10         abort ();
11 }