Module Name: pcc-tests
Committed By: plunky
Date: Mon Nov 7 09:47:00 UTC 2011
Modified Files:
pcc-tests/regress/pcclist: init003.c
Log Message:
fix up "packed" test
the reason it failed on gcc is that #pragma "packed" is not supported,
handle that with #ifdef
Then, a packed char/int structure would be sizeof char + sizeof int (=5),
and an unpacked one would be 2 * sizeof int (=8)
(unless there was some different alignment requirement)
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pcc-tests/regress/pcclist/init003.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.