Details
Details
- Reviewers
ezhulenev - Commits
- rG674dd9d08ec0: [mlir] Fix body-less async.execute printing
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
Execute without a body doesn't make much sense, maybe check it in verifier? Currently it will also fail because of op.body() access
Comment Actions
An op should be printable even if it's not valid. In particular, running conversions where async.execute bodies are moved to clones should not crash with '-debug'. The op.body() access is fine, the region always exists but may be empty.