From mboxrd@z Thu Jan 1 00:00:00 1970 Date: Fri, 22 Oct 2004 09:26:35 -0600 From: "Ronald G. Minnich" To: 9fans@cse.psu.edu Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: [9fans] am I nuts? does 8c support packed structs? Topicbox-Message-UUID: f3986cf4-eacd-11e9-9e20-41e7f4b1d025 consider this: struct a { ulong x; long y; short z; }; in GCC, you can add attribute packed and that struct will be 10 bytes. I'm getting some static from the Xen guys because IIRC 8c does not support packed structs -- that struct on 8c is 12 bytes. Am I nuts? Is there some 8c pragma that can force this to be packed? ron