[Mlir-commits] [mlir] [mlir][wasm] Support for saturating FP truncations (PR #212709)

Max Graey llvmlistbot at llvm.org
Sat Aug 1 04:56:49 PDT 2026


================
@@ -415,98 +361,117 @@ class ExpressionParser {
   template <typename OpToCreate>
   parsed_inst_t parseSetOrTee(OpBuilder &);
 
-  /// Blocks and Loops have a similar format and differ only in how their exit
-  /// is handled which doesn´t matter at parsing time. Factorizes in one
-  /// function.
-  template <typename OpToCreate>
-  parsed_inst_t parseBlockLikeOp(OpBuilder &);
-
   Location getCurrentOpLoc() {
     assert(currentOpLoc.has_value() &&
            "expects current opcode location to be set");
     return *currentOpLoc;
   }
 
-  class TopLevelInstParserRegistry {
+  struct ExprParserProxy {
   public:
----------------
MaxGraey wrote:

```suggestion
```
`struct` already public by default

https://github.com/llvm/llvm-project/pull/212709


More information about the Mlir-commits mailing list