[flang][NFC] switch ValueRange(nullopt) to ValueRange{} after #146011 (#146043)

Clean-up some std::nullopt usages in FIR ops builder that triggers a
deprecated warning after #146011.
This commit is contained in:
jeanPerier
2025-06-27 12:49:34 +02:00
committed by GitHub
parent 3f00cff5c7
commit b989c76f39

View File

@@ -2057,8 +2057,8 @@ def fir_SliceOp : fir_Op<"slice", [NoMemoryEffect, AttrSizedOperandSegments]> {
let builders = [
OpBuilder<(ins "mlir::ValueRange":$triples,
CArg<"mlir::ValueRange", "std::nullopt">:$fields,
CArg<"mlir::ValueRange", "std::nullopt">:$substr)>
CArg<"mlir::ValueRange", "{}">:$fields,
CArg<"mlir::ValueRange", "{}">:$substr)>
];
let hasVerifier = 1;
@@ -2253,8 +2253,8 @@ def fir_DoLoopOp : region_Op<"do_loop", [AttrSizedOperandSegments,
OpBuilder<(ins "mlir::Value":$lowerBound, "mlir::Value":$upperBound,
"mlir::Value":$step, CArg<"bool", "false">:$unordered,
CArg<"bool", "false">:$finalCountValue,
CArg<"mlir::ValueRange", "std::nullopt">:$iterArgs,
CArg<"mlir::ValueRange", "std::nullopt">:$reduceOperands,
CArg<"mlir::ValueRange", "{}">:$iterArgs,
CArg<"mlir::ValueRange", "{}">:$reduceOperands,
CArg<"llvm::ArrayRef<mlir::Attribute>", "{}">:$reduceAttrs,
CArg<"llvm::ArrayRef<mlir::NamedAttribute>", "{}">:$attributes)>
];
@@ -2441,7 +2441,7 @@ def fir_IterWhileOp : region_Op<"iterate_while",
OpBuilder<(ins "mlir::Value":$lowerBound, "mlir::Value":$upperBound,
"mlir::Value":$step, "mlir::Value":$iterate,
CArg<"bool", "false">:$finalCountValue,
CArg<"mlir::ValueRange", "std::nullopt">:$iterArgs,
CArg<"mlir::ValueRange", "{}">:$iterArgs,
CArg<"llvm::ArrayRef<mlir::NamedAttribute>", "{}">:$attributes)>
];