Commit 83a4e6e9 by Andy Hutchinson

* gcc.dg/torture/pr37868.c: Use smaller bitfield for 16bit int targets.

From-SVN: r154474
parent dc8926ce
2009-11-23 Andy Hutchinson <hutchinsonandy@gcc.gnu.org>
* gcc.dg/torture/pr37868.c: Use smaller bitfield for 16bit int
targets.
2009-11-23 Andy Hutchinson <hutchinsonandy@gcc.gnu.org>
* gcc.dg/tree-ssa/pr33920.c: Remove warning check for 16 bit target.
2009-11-23 Andy Hutchinson <hutchinsonandy@gcc.gnu.org>
......
......@@ -3,7 +3,14 @@
/* { dg-skip-if "unaligned access" { sparc*-*-* } "*" "" } */
extern void abort (void);
#if (__SIZEOF_INT__ <= 2)
struct X {
unsigned char pad : 4;
unsigned int a : 16;
unsigned int b : 8;
unsigned int c : 6;
} __attribute__((packed));
#else
struct X {
unsigned char pad : 4;
unsigned int a : 32;
......@@ -11,6 +18,9 @@ struct X {
unsigned int c : 6;
} __attribute__((packed));
#endif
int main (void)
{
struct X x;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment