[Mlir-commits] [mlir] [mlir][ptr] Add load and store ops. (PR #156093)
Mehdi Amini
llvmlistbot at llvm.org
Sun Aug 31 02:12:20 PDT 2025
================
@@ -773,9 +773,10 @@ class OptionalProp<Property p, bit canDelegateParsing = 1>
}];
let writeToMlirBytecode = [{
$_writer.writeOwnedBool($_storage.has_value());
- if (!$_storage.has_value())
- return;
- }] # !subst("$_storage", "(*($_storage))", p.writeToMlirBytecode);
+ if ($_storage.has_value()) {
+ }] # !subst("$_storage", "(*($_storage))", p.writeToMlirBytecode) # [{
----------------
joker-eph wrote:
This seems relevant, I don't get your fix right now.
https://github.com/llvm/llvm-project/pull/156093
More information about the Mlir-commits
mailing list