view gcc/testsuite/gcc.dg/tree-ssa/ldist-31.c @ 145:1830386684a0

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

/* { dg-do compile { target size32plus } } */
/* { dg-options "-O2 -ftree-loop-distribution -ftree-loop-distribute-patterns -fdump-tree-ldist-details" } */

#define M (256)
#define N (512)
int a[M][N], b[M][N], c[M];

void
foo (void)
{
  for (int i = M - 1; i >= 0; --i)
    {
      c[i] = 0;
      for (unsigned j = N; j > 0; --j)
	a[i][j - 1] = b[i][j - 1];
    }
}

/* { dg-final { scan-tree-dump-times "Loop nest . distributed: split to 0 loops and 2 library" 1 "ldist" } } */