URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [gomp/] [appendix-a/] [a.33.2.c] - Rev 149
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ #include <stdio.h> #include <stdlib.h> float read_next () { float *tmp; float return_val; #pragma omp single copyprivate(tmp) { tmp = (float *) malloc (sizeof (float)); } /* copies the pointer only */ #pragma omp master { scanf ("%f", tmp); } #pragma omp barrier return_val = *tmp; #pragma omp barrier #pragma omp single nowait { free (tmp); } return return_val; }
Go to most recent revision | Compare with Previous | Blame | View Log