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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [tree-ssa/] [gen-vect-11a.c] - Blame information for rev 853

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

Line No. Rev Author Line
1 149 jeremybenn
/* { dg-do run { target vect_cmdline_needed } } */
2
/* { dg-options "-O2 -ftree-vectorize -ftree-vectorizer-verbose=3 -fdump-tree-vect-stats" } */
3
 
4
#include <stdlib.h>
5
 
6
#define N 16
7
 
8
#if __LONG_MAX__ == 2147483647
9
typedef short half_word;
10
#else
11
typedef int half_word;
12
#endif
13
 
14
int main ()
15
{
16
  int i;
17
  half_word ia[N];
18
  half_word ic[N] = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45};
19
  half_word ib[N] = {0,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45};
20
 
21
  for (i = 0; i < N; i++)
22
    {
23
      ia[i] = ib[i] & ic[i];
24
    }
25
 
26
  /* check results:  */
27
  for (i = 0; i < N; i++)
28
    {
29
      if (ia[i] != ib[i] & ic[i])
30
        abort ();
31
    }
32
 
33
  return 0;
34
}
35
 
36
 
37
/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
38
/* { 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.