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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [20011008-2.c] - Rev 816

Compare with Previous | Blame | View Log

/* { dg-do run } */
/* { dg-options "-O0" } */
 
extern void abort (void);
extern void exit (int);
 
struct { union {int x; int y;}; int q; } b;
union { struct {int x;}; int q; } e;
 
main()
{
  b.y = 10;
  b.x = 15;
  if (b.y != 15)
    abort();
 
  e.x = 10;
  e.q = 15;
  if (e.x != 15)
    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.