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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [tree-ssa/] [vrp01.c] - Rev 826

Compare with Previous | Blame | View Log

/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-vrp1" } */
 
foo (int *p, int i)
{
  int x;
 
  if (i > 10)
    {
      if (p)
	{
	  x = *p;
	  p = 0;
	}
    }
  else
    p = 0;
 
  /* This should be folded to if (1), but only if we insert an
     assertion on the ELSE edge from the inner 'if (p)'.  */
  if (p == 0)
    return x + 1;
 
  return i;
}
 
/* { dg-final { scan-tree-dump-times "Folding predicate p_.*to 1" 1 "vrp1" } } */
/* { dg-final { cleanup-tree-dump "vrp1" } } */
 

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.