[llvm] [flang][rt] Fix the use of kNoAsyncId -> kNoAsyncObject (PR #141079)
Valentin Clement バレンタイン クレメン via llvm-commits
llvm-commits at lists.llvm.org
Thu May 22 07:49:07 PDT 2025
https://github.com/clementval created https://github.com/llvm/llvm-project/pull/141079
None
>From 61c1a9417982a67cc8770f59b22cea7c921cf67a Mon Sep 17 00:00:00 2001
From: Valentin Clement <clementval at gmail.com>
Date: Thu, 22 May 2025 07:48:17 -0700
Subject: [PATCH] [flang][rt] Fix the use of kNoAsyncId -> kNoAsyncObject
---
flang-rt/lib/runtime/assign.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/flang-rt/lib/runtime/assign.cpp b/flang-rt/lib/runtime/assign.cpp
index a07b0309ddf5b..86aeeaa88f2d1 100644
--- a/flang-rt/lib/runtime/assign.cpp
+++ b/flang-rt/lib/runtime/assign.cpp
@@ -591,7 +591,7 @@ void RTDEF(CopyInAssign)(Descriptor &temp, const Descriptor &var,
temp = var;
temp.set_base_addr(nullptr);
temp.raw().attribute = CFI_attribute_allocatable;
- temp.Allocate(kNoAsyncId);
+ temp.Allocate(kNoAsyncObject);
ShallowCopy(temp, var);
}
More information about the llvm-commits
mailing list