Add _FloatN, _FloatNx tests for __builtin_fpclassify.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr55755.c
blob3c8bb6ba41a68024989bd19cc379ec4440448232
1 /* { dg-do run } */
2 /* { dg-require-effective-target int32plus } */
4 struct S4
6 unsigned f0:24;
7 } __attribute__((__packed__));
9 struct S4 g_10 = {
10 6210831
13 struct S5
15 int i;
16 struct S4 l_8[2];
17 } __attribute__((__packed__));
19 int a, b;
21 struct S4 func_2 (int x)
23 struct S5 l = {
25 {{0}, {0}}
27 l.i = a;
28 g_10 = l.l_8[1];
29 for (; x<2; x++) {
30 struct S4 tmp = {
31 11936567
33 l.l_8[x] = tmp;
35 b = l.i;
36 return g_10;
39 int main (void)
41 func_2 (0);
42 return 0;