Skip to content

Commit 0d46400

Browse files
authored
[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 <[email protected]>
1 parent 0c96c65 commit 0d46400

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flang-rt/lib/runtime/assign.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,7 @@ void RTDEF(CopyInAssign)(Descriptor &temp, const Descriptor &var,
591591
temp = var;
592592
temp.set_base_addr(nullptr);
593593
temp.raw().attribute = CFI_attribute_allocatable;
594-
temp.Allocate(kNoAsyncId);
594+
temp.Allocate(kNoAsyncObject);
595595
ShallowCopy(temp, var);
596596
}
597597

0 commit comments

Comments
 (0)