URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [gomp/] [tls-4.C] - Rev 327
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }
// { dg-require-effective-target tls_native }
#define thr threadprivate
struct S
{
static int s;
};
struct T : public S
{
static int t;
#pragma omp thr (s) // { dg-error "directive not in" }
};
#pragma omp thr (T::t) // { dg-error "directive not in" }
Go to most recent revision | Compare with Previous | Blame | View Log