llvm-project/clang/test/AST/ast-print-openacc-update-construct.cpp
erichkeane 553fa204ed [OpenACC] Implement 'at least one of' restriction for 'update'
This completes the implementation of 'update' by implementing its last
restriction. This restriction requires at least 1 of the 'self', 'host',
  or 'device' clauses.
2025-01-09 09:28:58 -08:00

48 lines
1.8 KiB
C++

// RUN: %clang_cc1 -fopenacc -ast-print %s -o - | FileCheck %s
void uses(bool cond) {
int I;
int *iPtr;
int array[5];
// CHECK: #pragma acc update self(I)
#pragma acc update self(I)
// CHECK: #pragma acc update self(I) if_present
#pragma acc update self(I) if_present
// CHECK: #pragma acc update self(I) if(cond)
#pragma acc update self(I) if(cond)
// CHECK: #pragma acc update self(I) async
#pragma acc update self(I) async
// CHECK: #pragma acc update self(I) async(*iPtr)
#pragma acc update self(I) async(*iPtr)
// CHECK: #pragma acc update self(I) async(I)
#pragma acc update self(I) async(I)
// CHECK: #pragma acc update self(I) wait(*iPtr, I) async
#pragma acc update self(I) wait(*iPtr, I) async
// CHECK: #pragma acc update self(I) wait(queues: *iPtr, I) async(*iPtr)
#pragma acc update self(I) wait(queues:*iPtr, I) async(*iPtr)
// CHECK: #pragma acc update self(I) wait(devnum: I : *iPtr, I) async(I)
#pragma acc update self(I) wait(devnum:I:*iPtr, I) async(I)
// CHECK: #pragma acc update self(I) wait(devnum: I : queues: *iPtr, I) if(I == array[I]) async(I)
#pragma acc update self(I) wait(devnum:I:queues:*iPtr, I) if(I == array[I]) async(I)
// CHECK: #pragma acc update self(I) device_type(I) dtype(H)
#pragma acc update self(I) device_type(I) dtype(H)
// CHECK: #pragma acc update self(I) device_type(J) dtype(K)
#pragma acc update self(I) device_type(J) dtype(K)
// CHECK: #pragma acc update self(I, iPtr, array, array[1], array[1:2])
#pragma acc update self(I, iPtr, array, array[1], array[1:2])
// CHECK: #pragma acc update host(I, iPtr, array, array[1], array[1:2])
#pragma acc update host (I, iPtr, array, array[1], array[1:2])
// CHECK: #pragma acc update device(I, iPtr, array, array[1], array[1:2])
#pragma acc update device(I, iPtr, array, array[1], array[1:2])
}