New test.

From-SVN: r36600
This commit is contained in:
Richard Henderson 2000-09-25 00:04:55 -07:00
parent 5a864cbf17
commit 07035c0fc6

View File

@ -0,0 +1,12 @@
typedef struct s {
unsigned short a;
unsigned long b __attribute__ ((packed));
} s;
s t;
int main()
{
t.b = 0;
return 0;
}