Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions flang/test/Semantics/OpenMP/atomic-update-overloaded-ops.f90
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
! RUN: %python %S/../test_errors.py %s %flang_fc1 -fopenmp

module new_operator
implicit none

interface operator(.MYOPERATOR.)
module procedure myprocedure
end interface
contains
pure integer function myprocedure(param1, param2)
integer, intent(in) :: param1, param2
myprocedure = param1 + param2
end function
end module

program sample
use new_operator
implicit none
integer :: x, y

!$omp atomic update
x = x / y

!$omp atomic update
!ERROR: Invalid or missing operator in atomic update statement
x = x .MYOPERATOR. y

!$omp atomic
!ERROR: Invalid or missing operator in atomic update statement
x = x .MYOPERATOR. y
end program