Pick three bugfixes from next branch to trunk for inclusion in 4.5.0 RC2, as discusse...
[sdcc.git] / sdcc / support / regression / tests / gcc-torture-execute-packed-2.c
blobbd9a111d6206bc975d4a6d0046d1f4f05f660ae2
1 /*
2 packed-2.c from the execute part of the gcc torture tests.
3 */
5 #include <testfwk.h>
7 typedef struct s {
8 unsigned short a;
9 unsigned long b;
10 } s;
12 s t;
14 void
15 testTortureExecute (void)
17 t.b = 0;
18 return;