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

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [gcc.dg/] [vect/] [vect-8.c] - Blame information for rev 384

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 298 jeremybenn
/* { dg-require-effective-target vect_float } */
2
 
3
#include <stdarg.h>
4
#include "tree-vect.h"
5
 
6
#define N 16
7
 
8
float b[N] = {0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30};
9
float a[N];
10
 
11
__attribute__ ((noinline))
12
int main1 (int n)
13
{
14
  int i;
15
 
16
  /* Vectorized: unknown loop bound).  */
17
  for (i = 0; i < n; i++){
18
    a[i] = b[i];
19
  }
20
 
21
  /* check results:  */
22
  for (i = 0; i < n; i++)
23
    {
24
      if (a[i] != b[i])
25
        abort ();
26
    }
27
 
28
  return 0;
29
}
30
 
31
int main (void)
32
{
33
  check_vect ();
34
 
35
  return main1 (N);
36
}
37
 
38
/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
39
/* { 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.