view gcc/testsuite/gcc.dg/torture/pr67916.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 tree-optimization/67916 */
/* { dg-do run } */

int a[6], b = 1, d, e;
long long c;
static int f = 1;

void
fn1 (int p1)
{
  b = (b >> 1) & (1 ^ a[(1 ^ p1) & 5]);
}

void
fn2 ()
{
  b = (b >> 1) & (1 ^ a[(b ^ 1) & 1]);
  fn1 (c >> 1 & 5);
  fn1 (c >> 2 & 5);
  fn1 (c >> 4 & 5);
  fn1 (c >> 8 & 5);
}

int
main ()
{
  int i, j;
  for (; d;)
    {
      for (; e;)
	fn2 ();
      f = 0;
    }
  for (i = 0; i < 8; i++)
    {
      if (f)
	i = 9;
      for (j = 0; j < 7; j++)
	fn2 ();
    }

  if (b != 0)
    __builtin_abort ();

  return 0;
}