view gcc/testsuite/gcc.dg/tree-ssa/ssa-dom-thread-9.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
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);
    }
}