We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7910706 commit c4e8970Copy full SHA for c4e8970
flang/lib/Lower/OpenMP/Atomic.cpp
@@ -625,7 +625,8 @@ genAtomicUpdate(lower::AbstractConverter &converter,
625
// operations with exactly two (non-optional) arguments.
626
rhs = genReducedMinMax(rhs, atomArg, args);
627
input = *evaluate::GetConvertInput(rhs);
628
- auto [opcode, args] = evaluate::GetTopLevelOperationIgnoreResizing(input);
+ std::tie(opcode, args) =
629
+ evaluate::GetTopLevelOperationIgnoreResizing(input);
630
atomArg = nullptr; // No longer valid.
631
}
632
for (auto &arg : args) {
0 commit comments