OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [union-5.c] - Rev 378

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

/* { dg-do run { target i?86-*-* x86_64-*-* } } */
/* { dg-options "-O -fgcse -fno-split-wide-types" } */
 
extern void abort(void);
 
typedef unsigned short int uint16_t;
typedef unsigned int uint32_t;
typedef unsigned long long uint64_t;
 
typedef struct
{
  uint16_t thread;
  uint16_t phase;
} s32;
 
typedef union
{
  uint32_t i;
  s32 s;
} u32;
 
typedef union
{
  uint64_t i;
  u32 u;
} u64;
 
static __attribute__((noinline))
void foo(int val)
{
  u64 data;
  uint32_t thread;
 
  data.u.i = 0x10000L;
  thread = data.u.s.thread;
  if (val)
    abort ();
  if (thread)
    abort ();
}
 
int main(void)
{
  foo (0);
  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.