Commit 758ed11f by Balaji V. Iyer Committed by Balaji V. Iyer

sec_reduce_ind_same_value.c: New test.

2013-06-17  Balaji V. Iyer  <balaji.v.iyer@intel.com>

        * c-c++-common/cilk-plus/AN/sec_reduce_ind_same_value.c: New test.

From-SVN: r200155
parent 8ed00d76
2013-06-17 Balaji V. Iyer <balaji.v.iyer@intel.com>
* c-c++-common/cilk-plus/AN/sec_reduce_ind_same_value.c: New test.
2013-06-17 Balaji V. Iyer <balaji.v.iyer@intel.com>
* c-c++-common/cilk-plus/AN/array_test1.c: Make this an execution test.
Also changed the returns from error as distinct values so that it is
......
/* { 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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment