Implement C _FloatN, _FloatNx types.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr63380-1.c
blob29deface81d74dee8ee025f87493f520f8b2df89
1 /* { dg-do run } */
3 int a = 0, b = 1, c = 0, d = 1, e, f, g, h;
4 int
5 main ()
7 e = 1 >> d;
8 f = ((31 / (1 > e)) || c) / 2;
9 g = b || a;
10 h = 31 / g;
11 if (!h)
12 __builtin_abort();
13 return 0;