brintos

brintos / llvm-project-archived public Read only

0
0
Text · 662 B · daf3874 Raw
17 lines · plain
1! RUN: %python %S/../test_symbols.py %s %flang_fc1 -fopenmp2 3! 2.15.3 Data-Sharing Attribute Clauses4! A list item that specifies a given variable may not appear in more than5! one clause on the same directive, except that a variable may be specified6! in both firstprivate and lastprivate clauses.7 8  !DEF: /MainProgram1/a (Implicit) ObjectEntity REAL(4)9  a = 1.10  !$omp parallel do  firstprivate(a) lastprivate(a)11  !DEF: /MainProgram1/OtherConstruct1/i (OmpPrivate, OmpPreDetermined) HostAssoc INTEGER(4)12  do i=1,1013     !DEF: /MainProgram1/OtherConstruct1/a (OmpFirstPrivate, OmpLastPrivate, OmpExplicit) HostAssoc REAL(4)14     a = 2.15  end do16end program17