view gcc/testsuite/gcc.dg/uninit-23.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
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;
  }
}