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

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

/* { dg-do compile } */
/* { dg-additional-options "-g" } */

extern int foo(void);

int main(void)
{
  int i, a, b;

  if (foo())
    return 0;

  for (i = 0, a = 0, b = 0; i < 3; i++, a++)
  {
    if (foo())
      break;

    if (b += a)
      a = 0;
  }

  if (!a)
    return 2;

  b += a;

  return 0;
}