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.0rc3/] [gcc/] [testsuite/] [gcc.dg/] [gomp/] [pr35751.c] - Rev 516

Compare with Previous | Blame | View Log

/* PR c/35751 */
/* { dg-do compile } */
/* { dg-options "-fopenmp" } */
 
void
foo (int i)
{
  extern int a[i];	/* { dg-error "must have no linkage|storage size of" } */
  static int b[i];	/* { dg-error "storage size of" } */
 
#pragma omp parallel
  {
    a[0] = 0;
    b[0] = 0;
  }
 
#pragma omp parallel shared (a, b)
  {
    a[0] = 0;
    b[0] = 0;
  }
 
#pragma omp parallel private (a, b)
  {
    a[0] = 0;
    b[0] = 0;
  }
 
#pragma omp parallel firstprivate (a, b)
  {
    a[0] = 0;
    b[0] = 0;
  }
}
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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