brintos

brintos / llvm-project-archived public Read only

0
0
Text · 367 B · d309a21 Raw
12 lines · plain
1!RUN: bbc %openmp_flags -fopenmp-version=50 -emit-hlfir %s -o - | FileCheck %s2!RUN: %flang_fc1 -emit-hlfir %openmp_flags -fopenmp-version=50 %s -o - | FileCheck %s3 4!CHECK: omp.atomic.write %{{[0-9]+}}#0 = %{{[0-9]+}} memory_order(relaxed)5 6subroutine f02(x, v)7  integer :: x, v8  !$omp requires atomic_default_mem_order(acquire)9  !$omp atomic write10    x = v11end12