view gcc/testsuite/gcc.dg/sms-13.c @ 131:84e7813d76e9

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

/* PR target/83507 */
/* { dg-do compile } */
/* { dg-options "-O2 -fmodulo-sched -fno-tree-ter -fno-tree-coalesce-vars" } */

void
foo (unsigned short int x, unsigned char y)
{
  unsigned char *a = &y;
  unsigned short int b;
  int c;

  while (y < 3)
    {
      if (x != 0)
        ++y;
      ++y;
    }

  for (c = 0; c < 5; ++c)
    {
      int d = 1;
      d += b > x;
      y &= d;
    }

  do
    {
      c += y;
      x = c;
    }
  while (x != 0);
}