[flang-commits] [flang] [flang][OpenMP] Add test for checking overloaded operator in atomic update (PR #88471)

via flang-commits flang-commits at lists.llvm.org
Wed Apr 24 04:40:37 PDT 2024


https://github.com/NimishMishra updated https://github.com/llvm/llvm-project/pull/88471

>From 0151f726c4e4d236a4bc6b0bd17c44b79df96386 Mon Sep 17 00:00:00 2001
From: Nimish Mishra <neelam.nimish at gmail.com>
Date: Wed, 24 Apr 2024 17:09:51 +0530
Subject: [PATCH] [flang][OpenMP] Add test for checking overloaded operator in
 atomic update

---
 .../OpenMP/atomic-update-overloaded-ops.f90   | 31 +++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 flang/test/Semantics/OpenMP/atomic-update-overloaded-ops.f90

diff --git a/flang/test/Semantics/OpenMP/atomic-update-overloaded-ops.f90 b/flang/test/Semantics/OpenMP/atomic-update-overloaded-ops.f90
new file mode 100644
index 00000000000000..21a9b87d263459
--- /dev/null
+++ b/flang/test/Semantics/OpenMP/atomic-update-overloaded-ops.f90
@@ -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



More information about the flang-commits mailing list