aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--flang-rt/lib/runtime/assign.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/flang-rt/lib/runtime/assign.cpp b/flang-rt/lib/runtime/assign.cpp
index a07b030..86aeeaa 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);
}