Skip to content

Commit c4e8970

Browse files
committed
revert remove std::tie
1 parent 7910706 commit c4e8970

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

flang/lib/Lower/OpenMP/Atomic.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -625,7 +625,8 @@ genAtomicUpdate(lower::AbstractConverter &converter,
625625
// operations with exactly two (non-optional) arguments.
626626
rhs = genReducedMinMax(rhs, atomArg, args);
627627
input = *evaluate::GetConvertInput(rhs);
628-
auto [opcode, args] = evaluate::GetTopLevelOperationIgnoreResizing(input);
628+
std::tie(opcode, args) =
629+
evaluate::GetTopLevelOperationIgnoreResizing(input);
629630
atomArg = nullptr; // No longer valid.
630631
}
631632
for (auto &arg : args) {

0 commit comments

Comments
 (0)