[flang-rt] Fix usage of kNoAsyncId in assign.cpp (#141077)

Fix a leftover old variable name causing build bot errors.

Signed-off-by: Kajetan Puchalski <kajetan.puchalski@arm.com>
This commit is contained in:
Kajetan Puchalski
2025-05-22 15:49:03 +01:00
committed by GitHub
parent 0c96c65169
commit 0d464009fe

View File

@@ -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);
}