diff options
| author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-18 18:44:49 +0000 |
|---|---|---|
| committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-18 18:44:49 +0000 |
| commit | 5a7c60e7e35fd7df48c2e3ddd678b1bbc9c124a1 (patch) | |
| tree | c39647c0599ac8a878f9f5d867e1823cae2f9121 | |
| parent | 23d1bad67c2b9ff8e26b69cb30f232502112822f (diff) | |
| download | ppe42-gcc-5a7c60e7e35fd7df48c2e3ddd678b1bbc9c124a1.tar.gz ppe42-gcc-5a7c60e7e35fd7df48c2e3ddd678b1bbc9c124a1.zip | |
* c-c++-common/cilk-plus/PS/reduction-3.c: Use stdlib.h.
Remove spurious FIXME.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@204977 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/testsuite/c-c++-common/cilk-plus/PS/reduction-3.c | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index af4631f437c..9dd4e626d1d 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -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> * c-c++-common/cilk-plus/PS/body.c: Add fopenmp effective target check. diff --git a/gcc/testsuite/c-c++-common/cilk-plus/PS/reduction-3.c b/gcc/testsuite/c-c++-common/cilk-plus/PS/reduction-3.c index 26822d633ff..35cb904a540 100644 --- a/gcc/testsuite/c-c++-common/cilk-plus/PS/reduction-3.c +++ b/gcc/testsuite/c-c++-common/cilk-plus/PS/reduction-3.c @@ -1,13 +1,11 @@ /* { dg-do run } */ /* { dg-options "-O3 -fcilkplus" } */ -/* FIXME: This test has been xfailed until reductions are fixed. */ - #define N 256 #if HAVE_IO #include <stdio.h> #endif -#include <malloc.h> +#include <stdlib.h> int reduction_simd (int *a) |

