view gcc/testsuite/gcc.dg/torture/pr90671.c @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 1830386684a0
children
line wrap: on
line source

/* PR tree-optimization/90671 */
/* { dg-do compile } */
/* { dg-additional-options "-w -g" } */

int a;

int
main ()
{
  int b, c;
  for (c = 0; c < 2; c++)
    while (a)
      if (b)
	break;
  return 0;
}