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/] [tree-ssa/] [pr27799.c] - Diff between revs 298 and 384

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 298 Rev 384
/* { dg-do link } */
/* { dg-do link } */
/* { dg-options "-O2" } */
/* { dg-options "-O2" } */
 
 
struct X { double m; int x; };
struct X { double m; int x; };
struct Y { int y; short d; };
struct Y { int y; short d; };
struct YY { int y; short d; char c; };
struct YY { int y; short d; char c; };
 
 
extern void link_error (void);
extern void link_error (void);
 
 
int foo(struct X *x,  struct Y *y)
int foo(struct X *x,  struct Y *y)
{
{
  x->x =  0;
  x->x =  0;
  y->y =  1;
  y->y =  1;
  if (x->x != 0)
  if (x->x != 0)
    link_error ();
    link_error ();
}
}
 
 
int foo_no(struct X *x,  struct YY *y)
int foo_no(struct X *x,  struct YY *y)
{
{
  x->x =  0;
  x->x =  0;
  y->y =  1;
  y->y =  1;
  if (x->x != 0)
  if (x->x != 0)
    link_error ();
    link_error ();
}
}
 
 
int main() {}
int main() {}
 
 

powered by: WebSVN 2.1.0

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