File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
flang/lib/Optimizer/Dialect Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1935,7 +1935,7 @@ mlir::Value fir::IterWhileOp::blockArgToSourceOp(unsigned blockArgNum) {
1935
1935
return {};
1936
1936
}
1937
1937
1938
- llvm::MutableArrayRef<mlir::OpOperand>
1938
+ std::optional< llvm::MutableArrayRef<mlir::OpOperand> >
1939
1939
fir::IterWhileOp::getYieldedValuesMutable () {
1940
1940
auto *term = getRegion ().front ().getTerminator ();
1941
1941
return getFinalValue () ? term->getOpOperands ().drop_front ()
@@ -2247,7 +2247,7 @@ mlir::Value fir::DoLoopOp::blockArgToSourceOp(unsigned blockArgNum) {
2247
2247
return {};
2248
2248
}
2249
2249
2250
- llvm::MutableArrayRef<mlir::OpOperand>
2250
+ std::optional< llvm::MutableArrayRef<mlir::OpOperand> >
2251
2251
fir::DoLoopOp::getYieldedValuesMutable () {
2252
2252
auto *term = getRegion ().front ().getTerminator ();
2253
2253
return getFinalValue () ? term->getOpOperands ().drop_front ()
You can’t perform that action at this time.
0 commit comments