OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [gcc.dg/] [vect/] [pr35821-spu.c] - Rev 338

Compare with Previous | Blame | View Log

/* { dg-do compile { target { spu-*-* } } } */
 
void
foo (float f_gain1, int n_tail, float * __restrict__ f_in_hptr,
     float * __restrict__ f_out_hptr)
{
  int i;
  __attribute__((__spu_vector__)) float *v_f_in_hptr, *v_f_out_hptr;
 
  f_in_hptr = ( float* )v_f_in_hptr;
  f_out_hptr = ( float* )v_f_out_hptr;
 
  for( i = 0 ; i < n_tail ; i++ ) {
   f_out_hptr[0] = f_in_hptr[0] * f_gain1;
   f_in_hptr++;
   f_out_hptr++;
  }
}
 
/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
/* { dg-final { cleanup-tree-dump "vect" } } */
 
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.