OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [gcc/] [testsuite/] [gcc.dg/] [gomp/] [sharing-1.c] - Diff between revs 298 and 338

Only display areas with differences | Details | Blame | View Log

Rev 298 Rev 338
/* { dg-do compile } */
/* { dg-do compile } */
/* { dg-require-effective-target tls_native } */
/* { dg-require-effective-target tls_native } */
 
 
#include <stdlib.h>
#include <stdlib.h>
 
 
int thrglobalvar;
int thrglobalvar;
#pragma omp threadprivate (thrglobalvar)
#pragma omp threadprivate (thrglobalvar)
int globalvar;
int globalvar;
const int constvar = 8;
const int constvar = 8;
 
 
int
int
foo (int x)
foo (int x)
{
{
  return x;
  return x;
}
}
 
 
int
int
bar (int *x)
bar (int *x)
{
{
  return *x;
  return *x;
}
}
 
 
int
int
main (void)
main (void)
{
{
  static int thrlocvar;
  static int thrlocvar;
#pragma omp threadprivate (thrlocvar)
#pragma omp threadprivate (thrlocvar)
  static int locvar;
  static int locvar;
  static int *p;
  static int *p;
  int i, j, s, l;
  int i, j, s, l;
 
 
  p = malloc (sizeof (int));
  p = malloc (sizeof (int));
  if (p == NULL)
  if (p == NULL)
    return 0;
    return 0;
  *p = 7;
  *p = 7;
  s = 6;
  s = 6;
  l = 0;
  l = 0;
#pragma omp parallel for /* { dg-error "enclosing parallel" } */ \
#pragma omp parallel for /* { dg-error "enclosing parallel" } */ \
  default (none) private (p) shared (s)
  default (none) private (p) shared (s)
  for (i = 0; i < 64; i++)
  for (i = 0; i < 64; i++)
    {
    {
      int k = foo (0);   /* Predetermined - private (automatic var declared */
      int k = foo (0);   /* Predetermined - private (automatic var declared */
      k++;              /* in scope of construct).  */
      k++;              /* in scope of construct).  */
      thrglobalvar++;   /* Predetermined - threadprivate.  */
      thrglobalvar++;   /* Predetermined - threadprivate.  */
      thrlocvar++;      /* Predetermined - threadprivate.  */
      thrlocvar++;      /* Predetermined - threadprivate.  */
      foo (i);          /* Predetermined - private (omp for loop variable).  */
      foo (i);          /* Predetermined - private (omp for loop variable).  */
      foo (constvar);   /* Predetermined - shared (const qualified type).  */
      foo (constvar);   /* Predetermined - shared (const qualified type).  */
      foo (*p);         /* *p predetermined - shared (heap allocated */
      foo (*p);         /* *p predetermined - shared (heap allocated */
      (*p)++;           /* storage).  */
      (*p)++;           /* storage).  */
      bar (p);          /* Explicitly determined - private.  */
      bar (p);          /* Explicitly determined - private.  */
      foo (s);          /* Explicitly determined - shared.  */
      foo (s);          /* Explicitly determined - shared.  */
      globalvar++;      /* { dg-error "not specified in" } */
      globalvar++;      /* { dg-error "not specified in" } */
      locvar++;         /* { dg-error "not specified in" } */
      locvar++;         /* { dg-error "not specified in" } */
      l++;              /* { dg-error "not specified in" } */
      l++;              /* { dg-error "not specified in" } */
      for (j = 0; j < 2; j++); /* { dg-error "not specified in" } */
      for (j = 0; j < 2; j++); /* { dg-error "not specified in" } */
    }
    }
  return 0;
  return 0;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.