예제 #1
0
static unsigned int
tree_vectorize (void)
{
  if (number_of_loops () <= 1)
    return 0;

  return vectorize_loops ();
}
예제 #2
0
파일: tree-ssa-loop.c 프로젝트: 0mp/freebsd
static unsigned int
tree_vectorize (void)
{
  vectorize_loops (current_loops);
  return 0;
}