view gcc/testsuite/gcc.dg/uninit-23.c @ 145:1830386684a0

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

/* PR tree-optimization/78455 */
/* { dg-do compile } */
/* { dg-options "-O2 -Wuninitialized" } */

int ij;

void
ql (void)
{
  int m5 = 0;

  for (;;)
  {
    if (0)
      for (;;)
      {
        int *go;
        int *t4 = go; /* { dg-warning "is used uninitialized" } */

 l1:
        *t4 = (*t4 != 0) ? 0 : 2;
      }

    if (ij != 0)
      goto l1;
  }
}