summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/gomp/appendix-a/a.33.2.c
blob: a0da739dd84f32d70f32ec3a2cb66886252c088c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* { 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;
}