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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [packed-vla.c] - Rev 753

Go to most recent revision | Compare with Previous | Blame | View Log

/* PR middle-end/27945 */
/* { dg-do run } */
/* { dg-options "" } */
 
extern int printf (const char *, ...);
extern void abort ();
 
int func(int levels) 
{
  struct bar {
    unsigned char	a;
    int			b[levels];
  } __attribute__ ((__packed__)) bar;
 
  struct foo {
    unsigned char	a;
    int			b[4];
  } __attribute__ ((__packed__)) foo;
 
  printf("foo %d\n", sizeof(foo));
  printf("bar %d\n", sizeof(bar));
 
  if (sizeof (foo) != sizeof (bar))
    abort ();
}
 
int main()
{
  func(4);
  return 0;
}
 

Go to most recent revision | 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.