view gcc/testsuite/gcc.dg/tree-ssa/ssa-dom-thread-9.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* PR 65048 */
/* { dg-do compile } */
/* { dg-options "-O3 -std=gnu89" } */

int a, b, c, d;
void fn (void);

int
foo (x)
     int x;
{
  switch (x)
    {
    case 'A':
      return 'T';
    case 'U':
      return 'A';
    }
}

void
bar (int x, int y)
{
  switch (c)
    {
    case 'U':
      switch (x)
	{
	default:
	  fn ();
	case 'G':
	  switch (y)
	    {
	    case 'A':
	      d = 7;
	    }
	}
    }
}

void
baz (void)
{
  while (1)
    {
      a = foo ();
      b = foo ();
      bar (a, b);
    }
}