summaryrefslogtreecommitdiff
path: root/flang/test/Preprocessing/pp132.f90
blob: a0fdf46e7066fde9d12849f7d9548dacbbfac720 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
! RUN: %flang -E %s 2>&1 | FileCheck --strict-whitespace %s
! CHECK:       {{^}}!$OMP   parallel default(shared) private(super_very_long_name_for_the_va&
! CHECK-NEXT:  {{^}}!$OMP&riable)
! CHECK:       {{^}}!$omp   end parallel
! CHECK:       {{^}}!$acc   data copyin(super_very_long_name_for_the_variable, another_super&
! CHECK-NEXT:  {{^}}!$acc&_wordy_variable_to_test)
! CHECK:       {{^}}!$acc   end data
! CHECK:       {{^}}!$OMP          something something
! Test correct continuations in compiler directives and left-alignment of sentinels
subroutine foo
  integer :: super_very_long_name_for_the_variable
  integer :: another_super_wordy_variable_to_test

  super_very_long_name_for_the_variable = 42
  another_super_wordy_variable_to_test = super_very_long_name_for_the_variable * 2
  !$OMP parallel default(shared) private(super_very_long_name_for_the_variable)
  !$omp end parallel

  !$acc data copyin(super_very_long_name_for_the_variable, another_super_wordy_variable_to_test)
  !$acc end data
  
         !$OMP something something
end subroutine foo