reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | // RUN: %libomp-compile-and-run /* GCC failed this test because __kmp_get_gtid() instead of __kmp_entry_gtid() was called in xexpand(KMP_API_NAME_GOMP_TASKGROUP_START)(void). __kmp_entry_gtid() will initialize the runtime if not yet done which does not happen with __kmp_get_gtid(). */ int main() { #pragma omp taskgroup { } return 0; } |