blob: 6297181a4aa59b9335c7b654f81d672d7a24576e [file] [log] [blame] [edit]
// RUN: %libomptarget-compile-generic && %libomptarget-run-generic
// RUN: %libomptarget-compileopt-generic && %libomptarget-run-generic
// XFAIL: intelgpu
// Verify we do not read bits in the image that are not there (nobits section).
#pragma omp begin declare target
char BigUninitializedBuffer[4096 * 64] __attribute__((loader_uninitialized));
#pragma omp end declare target
int main() {
#pragma omp target
{}
}