Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / pr38422.c
blobe36879d7fe6d6141d2b54b9220d8d69910caa0c7
1 /* PR middle-end/38422 */
3 extern void abort (void);
5 struct S
7 int s : (sizeof (int) * __CHAR_BIT__ - 2);
8 } s;
10 void
11 foo (void)
13 s.s *= 2;
16 int
17 main ()
19 s.s = 24;
20 foo ();
21 if (s.s != 48)
22 abort ();
23 return 0;