aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/packed-2.c
blob: 6c579008849c6c63694a71c55208be761d495b62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
typedef struct s {
	unsigned short a;
	unsigned long b __attribute__ ((packed));
} s;

s t;

int main()
{
        t.b = 0;
	return 0;
}