brintos

brintos / llvm-project-archived public Read only

0
0
Text · 385 B · 36e41fc Raw
17 lines · plain
1! RUN: rm -fr %t && mkdir -p %t && cd %t2! RUN: bbc -fopenacc -emit-fir %s3! RUN: cat mod1.mod | FileCheck %s4 5!CHECK-LABEL: module mod16module mod17    contains8      !CHECK subroutine callee(aa)9      subroutine callee(aa)10      !CHECK: !$acc routine seq11      !$acc routine seq12        integer :: aa13        aa = 114      end subroutine15      !CHECK: end16      !CHECK: end17end module