blob: ef1c5774409c12e8bee3caefa69480117cb07940 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/* { dg-require-effective-target vect_int } */
#include <stdarg.h>
#include "tree-vect.h"
int main1 (int len)
{
int s = 0;
int i = len;
/* vectorization of induction with reduction. */
for ( ; i > 1; i -=2)
s += i;
return s;
}
int main (void)
{
int s;
check_vect ();
s = main1 (26);
if (s != 182)
abort ();
return 0;
}
/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
/* { dg-final { cleanup-tree-dump "vect" } } */
|