URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [gomp/] [tpl-for-3.C] - Rev 693
Compare with Previous | Blame | View Log
// { dg-do compile }
void foo(int);
template<typename T> void bar()
{
#pragma omp parallel for
for (typename T::T i = 0; i < T::N; ++i)
foo(i);
}
struct A
{
typedef int T;
static T N;
};
struct B
{
typedef long T;
static T N;
};
void test()
{
bar<A>();
bar<B>();
}