brintos

brintos / llvm-project-archived public Read only

0
0
Text · 411 B · b8fe6ce Raw
23 lines · plain
1!RUN: %python %S/../test_errors.py %s %flang -fopenmp -fopenmp-version=602 3subroutine f00(x)4  implicit none5  logical :: x6  !ERROR: Must be a constant value7  !$omp task replayable(x)8  !$omp end task9end10 11subroutine f0112  !ERROR: Must have LOGICAL type, but is INTEGER(4)13  !$omp task replayable(7)14  !$omp end task15end16 17subroutine f0218  !No diagnostic expected19  !$omp task replayable20  !$omp end task21end22 23