mirror of git://gcc.gnu.org/git/gcc.git
reduction-3.c: Use stdlib.h.
* c-c++-common/cilk-plus/PS/reduction-3.c: Use stdlib.h.
Remove spurious FIXME.
From-SVN: r204977
This commit is contained in:
parent
1d189846eb
commit
30d0460982
|
|
@ -1,3 +1,8 @@
|
||||||
|
2013-11-18 Dominique d'Humieres <dominiq@lps.ens.fr>
|
||||||
|
|
||||||
|
* c-c++-common/cilk-plus/PS/reduction-3.c: Use stdlib.h.
|
||||||
|
Remove spurious FIXME.
|
||||||
|
|
||||||
2013-11-18 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
|
2013-11-18 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
|
||||||
|
|
||||||
* c-c++-common/cilk-plus/PS/body.c: Add fopenmp effective target check.
|
* c-c++-common/cilk-plus/PS/body.c: Add fopenmp effective target check.
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,11 @@
|
||||||
/* { dg-do run } */
|
/* { dg-do run } */
|
||||||
/* { dg-options "-O3 -fcilkplus" } */
|
/* { dg-options "-O3 -fcilkplus" } */
|
||||||
|
|
||||||
/* FIXME: This test has been xfailed until reductions are fixed. */
|
|
||||||
|
|
||||||
#define N 256
|
#define N 256
|
||||||
#if HAVE_IO
|
#if HAVE_IO
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#endif
|
#endif
|
||||||
#include <malloc.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
int
|
int
|
||||||
reduction_simd (int *a)
|
reduction_simd (int *a)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue