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

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [gcc.dg/] [dfp/] [struct-union.c] - Diff between revs 298 and 384

Only display areas with differences | Details | Blame | View Log

Rev 298 Rev 384
/* { dg-do compile } */
/* { dg-do compile } */
/* { dg-options "-O -Wall" } */
/* { dg-options "-O -Wall" } */
 
 
/* C99 6.5.2.3 Structure and union members.
/* C99 6.5.2.3 Structure and union members.
   If the first expression has qualified type, the result has the so-qualified
   If the first expression has qualified type, the result has the so-qualified
   version of the type of the designated member.  */
   version of the type of the designated member.  */
 
 
struct s {_Decimal32 d32; const _Decimal64 d64;};
struct s {_Decimal32 d32; const _Decimal64 d64;};
struct sv { volatile _Decimal32 d32; volatile _Decimal64 d64; };
struct sv { volatile _Decimal32 d32; volatile _Decimal64 d64; };
union u
union u
{
{
  const _Decimal64 d64;
  const _Decimal64 d64;
  _Decimal32 d32;
  _Decimal32 d32;
  const struct s cs;
  const struct s cs;
};
};
 
 
struct s s;
struct s s;
struct sv sv;
struct sv sv;
const struct s cs;
const struct s cs;
 
 
union u u;
union u u;
const union u cu;
const union u cu;
 
 
struct s g (struct s s)
struct s g (struct s s)
{
{
  return s;
  return s;
}
}
 
 
union u h (union u u)
union u h (union u u)
{
{
  return u;
  return u;
}
}
 
 
void f()
void f()
{
{
  cs.d32 = 1.23dd; /* { dg-error "assignment of read-only variable" } */
  cs.d32 = 1.23dd; /* { dg-error "assignment of read-only variable" } */
  cs.d64 = 1.23df; /* { dg-error "assignment of read-only variable" } */
  cs.d64 = 1.23df; /* { dg-error "assignment of read-only variable" } */
  s.d64 = 1.23df;  /* { dg-error "assignment of read-only member" } */
  s.d64 = 1.23df;  /* { dg-error "assignment of read-only member" } */
 
 
  s.d32 = 1.23dd;
  s.d32 = 1.23dd;
  u.d32 = 1.23dd;
  u.d32 = 1.23dd;
 
 
  u.d64 = 1.23df;    /* { dg-error "assignment of read-only member" } */
  u.d64 = 1.23df;    /* { dg-error "assignment of read-only member" } */
  u.cs.d32 = 1.23dd; /* { dg-error "assignment of read-only member" } */
  u.cs.d32 = 1.23dd; /* { dg-error "assignment of read-only member" } */
  u.cs.d64 = 1.23df; /* { dg-error "assignment of read-only member" } */
  u.cs.d64 = 1.23df; /* { dg-error "assignment of read-only member" } */
 
 
  cu.d32 = 1.23dd;   /* { dg-error "assignment of read-only variable" } */
  cu.d32 = 1.23dd;   /* { dg-error "assignment of read-only variable" } */
 
 
  cu.d64 = 1.23df;    /* { dg-error "assignment of read-only variable" } */
  cu.d64 = 1.23df;    /* { dg-error "assignment of read-only variable" } */
  cu.cs.d32 = 1.23dd; /* { dg-error "assignment of read-only variable" } */
  cu.cs.d32 = 1.23dd; /* { dg-error "assignment of read-only variable" } */
  cu.cs.d64 = 1.23df; /* { dg-error "assignment of read-only variable" } */
  cu.cs.d64 = 1.23df; /* { dg-error "assignment of read-only variable" } */
 
 
  /* f().x is a valid postfix expression but is not an lvalue if
  /* f().x is a valid postfix expression but is not an lvalue if
     function f() returning a structure or union.  */
     function f() returning a structure or union.  */
  g(s).d32 = 1.23dd;  /* { dg-error "lvalue required" } */
  g(s).d32 = 1.23dd;  /* { dg-error "lvalue required" } */
  h(u).d64 = 1.23df;  /* { dg-error "lvalue required" } */
  h(u).d64 = 1.23df;  /* { dg-error "lvalue required" } */
 
 
  /* Test assignment to volatile structure members.  */
  /* Test assignment to volatile structure members.  */
  sv.d32 = 1.1df;
  sv.d32 = 1.1df;
  sv.d64 = 1.1dd;
  sv.d64 = 1.1dd;
}
}
 
 
 
 

powered by: WebSVN 2.1.0

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