[flang-commits] [flang] [llvm] [flang][OpenMP] Overhaul implementation of ATOMIC construct (PR #137852)
Krzysztof Parzyszek via flang-commits
flang-commits at lists.llvm.org
Mon Jun 2 06:22:21 PDT 2025
================
@@ -0,0 +1,82 @@
+!RUN: %flang_fc1 -fopenmp -fopenmp-version=60 -emit-hlfir -mmlir -fdebug-dump-atomic-analysis %s -o /dev/null 2>&1 | FileCheck %s
+
+subroutine f00(x)
+ integer :: x, v
+ !$omp atomic read
+ v = x
+end
+
+!CHECK: Analysis {
+!CHECK-NEXT: atom: x
+!CHECK-NEXT: cond: <null>
+!CHECK-NEXT: op0 {
+!CHECK-NEXT: what: Read
+!CHECK-NEXT: assign: v=x
+!CHECK-NEXT: }
+!CHECK-NEXT: op1 {
----------------
kparzysz wrote:
I prefer it when debug dumps print everything explicitly, in case something is messed up.
https://github.com/llvm/llvm-project/pull/137852
More information about the flang-commits
mailing list