URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [libgomp/] [testsuite/] [libgomp.fortran/] [lib4.f90] - Rev 438
Go to most recent revision | Compare with Previous | Blame | View Log
! { dg-do run }program lib4use omp_libinteger (omp_sched_kind) :: kindinteger :: modifiercall omp_set_schedule (omp_sched_static, 32)call omp_get_schedule (kind, modifier)if (kind.ne.omp_sched_static.or.modifier.ne.32) call abortcall omp_set_schedule (omp_sched_dynamic, 4)call omp_get_schedule (kind, modifier)if (kind.ne.omp_sched_dynamic.or.modifier.ne.4) call abortif (omp_get_thread_limit ().lt.0) call abortcall omp_set_max_active_levels (6)if (omp_get_max_active_levels ().ne.6) call abortend program lib4
Go to most recent revision | Compare with Previous | Blame | View Log
