view gcc/testsuite/gcc.dg/pr55110.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/55110 */
/* { dg-do compile } */
/* { dg-options "-O1 -ftree-vectorize" } */

int
foo (int x)
{
  int a, b;
  for (b = 0; b < 8; b++)
    for (a = 0; a < 2; a++)
      x /= 3;
  return x;
}