aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/c-c++-common/cilk-plus/AN/sec_reduce_ind_same_value.c
blob: 34c6f12846de256491cd743b3ce0cab376664eef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-do run } */
/* { dg-options "-fcilkplus" } */

int A[256];

int main () { 
    A[:] = 2; 
    int max_index = 0, min_index = 0;
  
    max_index = __sec_reduce_max_ind (A[:]);
  
    if (max_index != 255)
      return 1;

    min_index = __sec_reduce_min_ind (A[:]);
    if (min_index != 255)
      return 2;

    return 0;
}