view gcc/testsuite/gcc.dg/tree-ssa/20030907-2.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* PR optimization/12109

   This would ICE in tree-ssa-dce.c:process_worklist() when
   the function was expecting an SSA_NAME but found a VAR_DECL.  */

/* { dg-do compile } */
/* { dg-options "-O -ftree-dce" } */

void *do_it(void * dest, const void * src);
double *create_float(void);

void parse_rvalue(void **DataPtr)
{
  double local = 0.0;
  int terms = 1;

  *DataPtr = create_float();
  
  switch (terms)
    {
    case 1:
      *((double *)*DataPtr) = local;
      break;
      
    case 2:
      do_it(*DataPtr, &local);
      break;
    }
}