forked from OSchip/llvm-project
27 lines
1000 B
C
27 lines
1000 B
C
// RUN: %clang_cc1 -verify -fopenmp -triple x86_64-unknown-linux-gnu \
|
|
// RUN: -disable-llvm-passes -emit-llvm %s -o - | FileCheck %s
|
|
|
|
// expected-no-diagnostics
|
|
|
|
int x[100];
|
|
int y[100];
|
|
|
|
// CHECK-LABEL: @many_iterators_single_clause(
|
|
// CHECK: [[VLA:%.*]] = alloca [[STRUCT_KMP_DEPEND_INFO:%.*]], i64 10, align 16
|
|
// CHECK: = call i32 @__kmpc_omp_task_with_deps(%struct.ident_t* {{.*}}, i32 {{.*}}, i8* {{.*}}, i32 10, i8* {{.*}}, i32 0, i8* null)
|
|
void many_iterators_single_clause() {
|
|
#pragma omp task depend(iterator(j=0:5), in: x[j], y[j])
|
|
{
|
|
}
|
|
}
|
|
|
|
// CHECK-LABEL: @many_iterators_many_clauses(
|
|
// CHECK: [[VLA:%.*]] = alloca [[STRUCT_KMP_DEPEND_INFO:%.*]], i64 10, align 16
|
|
// CHECK: = call i32 @__kmpc_omp_task_with_deps(%struct.ident_t* {{.*}}, i32 {{.*}}, i8* {{.*}}, i32 10, i8* {{.*}}, i32 0, i8* null)
|
|
void many_iterators_many_clauses() {
|
|
#pragma omp task depend(iterator(j=0:5), in: x[j]) \
|
|
depend(iterator(j=0:5), in: y[j])
|
|
{
|
|
}
|
|
}
|