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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [vect/] [costmodel/] [ppc/] [costmodel-vect-76c.c] - Blame information for rev 749

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 689 jeremybenn
/* { dg-require-effective-target vect_int } */
2
 
3
#include <stdarg.h>
4
#include "../../tree-vect.h"
5
 
6
#define N 32 
7
#define OFF 4
8
 
9
/* Check handling of accesses for which the "initial condition" -
10
   the expression that represents the first location accessed - is
11
   more involved than just an ssa_name.  */
12
 
13
int ib[N+OFF] __attribute__ ((__aligned__(16))) = {0, 1, 3, 5, 7, 11, 13, 17, 0, 2, 6, 10};
14
int ic[N+OFF] = {0, 1, 3, 5, 7, 11, 13, 17, 0, 2, 6, 10};
15
 
16
int main1 (int *pib)
17
{
18
  int i;
19
  int ia[N+OFF];
20
 
21
  for (i = OFF; i < N; i++)
22
    {
23
      ia[i] = ic[i - OFF];
24
    }
25
 
26
 
27
  /* check results:  */
28
  for (i = OFF; i < N; i++)
29
    {
30
     if (ia[i] != ic[i - OFF])
31
        abort ();
32
    }
33
 
34
  return 0;
35
}
36
 
37
int main (void)
38
{
39
  check_vect ();
40
 
41
  main1 (&ib[OFF]);
42
  return 0;
43
}
44
 
45
 
46
/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
47
/* { dg-final { cleanup-tree-dump "vect" } } */

powered by: WebSVN 2.1.0

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