Tarun Prabhu afc0fb87b0
[flang][NFC] Strip trailing whitespace from tests (10 of N)
Only some fortran source files in flang/test/Parser/OpenMP have been
modified. The remaining files will be cleaned up in subsequent commits.
2025-12-04 13:50:39 -07:00

24 lines
1.0 KiB
Fortran

! 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