OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.dg/] [vect/] [costmodel/] [ppc/] [costmodel-slp-33.c] - Rev 298

Compare with Previous | Blame | View Log

/* { dg-require-effective-target vect_int } */
 
#include <stdarg.h>
#include "../../tree-vect.h"
 
#define N 32
 
struct s{
  short a;	/* aligned */
  char b[N-1];  /* unaligned (offset 2B) */
};
 
int main1 ()
{  
  int i;
  struct s tmp;
 
  /* unaligned */
  for (i = 0; i < N/4; i++)
    {
      tmp.b[2*i] = 5;
      tmp.b[2*i+1] = 15;
    }
 
  /* check results:  */
  for (i = 0; i <N/4; i++)
    {
      if (tmp.b[2*i] != 5
          || tmp.b[2*i+1] != 15)
        abort ();
    }
 
  return 0;
}
 
int main (void)
{ 
  check_vect ();
 
  return main1 ();
} 
 
/* { dg-final { scan-tree-dump-times "vectorization not profitable" 1 "vect" } } */
/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 0 "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.