2021-04-27 15:50:53 +02:00
|
|
|
// RUN: %libomptarget-compile-generic && env LIBOMPTARGET_DEBUG=1 %libomptarget-run-generic 2>&1 | %fcheck-generic -allow-empty -check-prefix=DEBUG
|
|
|
|
// RUN: %libomptarget-compile-generic && env LIBOMPTARGET_DEBUG=0 %libomptarget-run-generic 2>&1 | %fcheck-generic -allow-empty -check-prefix=NDEBUG
|
2017-08-14 15:09:59 +00:00
|
|
|
// REQUIRES: libomptarget-debug
|
|
|
|
|
|
|
|
int main(void) {
|
|
|
|
#pragma omp target
|
|
|
|
{}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2023-11-28 17:38:49 -08:00
|
|
|
// DEBUG: omptarget
|
|
|
|
// NDEBUG-NOT: omptarget
|
2017-08-14 15:09:59 +00:00
|
|
|
// NDEBUG-NOT: Target
|