view libgomp/testsuite/libgomp.c/target-3.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

#include <omp.h>
#include <stdlib.h>

int
main ()
{
  if (omp_get_level ())
    abort ();
  #pragma omp target if (0)
  if (omp_get_level ())
    abort ();
  #pragma omp target if (0)
  #pragma omp teams
  if (omp_get_level ())
    abort ();
  return 0;
}