view gcc/testsuite/gcc.dg/torture/pr82473.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

/* { dg-do compile } */
/* { dg-additional-options "-ftree-vectorize" } */

void
zz (int x9, short int gt)
{
  if (0)
    {
      while (gt < 1)
	{
	  int pz;

k6:
	  for (pz = 0; pz < 3; ++pz)
	    x9 += gt;
	  ++gt;
	}
    }

  if (x9 != 0)
    goto k6;
}