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/] [20041008-1.c] - Rev 298

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

/* { dg-do run } */ 
/* { dg-options "-O2" } */
 
struct A {
    int x;
    int y;
};
 
baz (struct A *a)
{
  a->x = 3;
  a->y = 2;
}
 
foo (int i)
{
  struct A a;
 
  /* Make sure we can't scalarize 'a'.  */
  baz (&a);
 
  if (i > 10)
    a.x = i;
  else
    a.x = i;
 
  /* Copy propagation should prove that this predicate is always false.  */
  if (a.x != i)
    link_error ();
 
  return a.x;
}
 
main ()
{
  foo (30);
  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.