brintos

brintos / llvm-project-archived public Read only

0
0
Text · 908 B · 08fe531 Raw
24 lines · plain
1! RUN: %python %S/../test_errors.py %s %flang_fc1 -fopenmp -fopenmp-version=522! OpenMP Version 5.13! Check OpenMP construct validity for the following directives:4! 2.14.7 Declare Target Directive5! When used in an implicit none context.6 7module test_08    implicit none9!ERROR: No explicit type declared for 'no_implicit_materialization_1'10!$omp declare target(no_implicit_materialization_1)11 12!ERROR: No explicit type declared for 'no_implicit_materialization_2'13!$omp declare target link(no_implicit_materialization_2)14 15!WARNING: The usage of TO clause on DECLARE TARGET directive has been deprecated. Use ENTER clause instead. [-Wopen-mp-usage]16!ERROR: No explicit type declared for 'no_implicit_materialization_3'17!$omp declare target to(no_implicit_materialization_3)18 19!$omp declare target enter(no_implicit_materialization_3)20 21INTEGER :: data_int = 1022!$omp declare target(data_int)23end module test_024