[Mlir-commits] [llvm] [mlir] [MLIR][Wasm] Introduce the WasmSSA MLIR dialect (PR #149233)

Jakub Kuderski llvmlistbot at llvm.org
Thu Jul 17 08:28:56 PDT 2025


================
@@ -0,0 +1,39 @@
+#include "mlir/Dialect/WebAssemblySSA/IR/WebAssemblySSA.h"
+#include "mlir/IR/OpImplementation.h"
+#include "mlir/IR/Types.h"
+#include "llvm/Support/LogicalResult.h"
+
+#include <optional>
+
+namespace mlir {
+namespace wasmssa {
+#include "mlir/Dialect/WebAssemblySSA/IR/WebAssemblySSATypeConstraints.cpp.inc"
+}
+
+} // namespace mlir
+
+using namespace mlir;
+using namespace mlir::wasmssa;
----------------
kuhar wrote:

```suggestion
namespace mlir::wasmssa {
namespace {
#include "mlir/Dialect/WebAssemblySSA/IR/WebAssemblySSATypeConstraints.cpp.inc"
```

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


More information about the Mlir-commits mailing list