OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.c-torture/] [execute/] [bitfld-2.c] - Rev 688

Compare with Previous | Blame | View Log

/* Test whether bit field boundaries aren't advanced if bit field type
   has alignment large enough.  */
extern void abort (void);
extern void exit (int);
 
struct A {
  unsigned short a : 5;
  unsigned short b : 5;
  unsigned short c : 6;
};
 
struct B {
  unsigned short a : 5;
  unsigned short b : 3;
  unsigned short c : 8;
};
 
int main ()
{
  /* If short is not at least 16 bits wide, don't test anything.  */
  if ((unsigned short) 65521 != 65521)
    exit (0);
 
  if (sizeof (struct A) != sizeof (struct B))
    abort ();
 
  exit (0);
}
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.