view gcc/testsuite/gcc.dg/pr83585.c @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 84e7813d76e9
children
line wrap: on
line source

/* PR debug/83585 */
/* { dg-do assemble } */
/* { dg-options "-std=gnu89 -O2 -g -fno-tree-dce -fno-guess-branch-probability" } */

int
foo (int x)
{
  int a, b;
  for (a = 0; a < 2; ++a)
    if (x != 0)
      {
        for (b = 0; b < 2; ++b)
          ;
        return 0;
      }

  return;
}