[Mlir-commits] [mlir] [mlir][IR] CommonTypeConstraints: fix syntax error (PR #123765)
Karlo Basioli
llvmlistbot at llvm.org
Tue Jan 21 07:27:24 PST 2025
https://github.com/basioli-k created https://github.com/llvm/llvm-project/pull/123765
None
>From 05a4ad5d0253b6a2a166c4dc4bcd46610cfe9828 Mon Sep 17 00:00:00 2001
From: basioli-k <k.basioli at gmail.com>
Date: Tue, 21 Jan 2025 15:26:34 +0000
Subject: [PATCH] [mlir][IR] CommonTypeConstraints: fix syntax error
---
mlir/include/mlir/IR/CommonTypeConstraints.td | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mlir/include/mlir/IR/CommonTypeConstraints.td b/mlir/include/mlir/IR/CommonTypeConstraints.td
index 75faa2a6b490d1..e5929103035686 100644
--- a/mlir/include/mlir/IR/CommonTypeConstraints.td
+++ b/mlir/include/mlir/IR/CommonTypeConstraints.td
@@ -351,7 +351,7 @@ def F4E2M1FN : Type<CPred<"::llvm::isa<::mlir::Float4E2M1FNType>($_self)">, "f4E
BuildableType<"$_builder.getType<Float4E2M1FNType>()">;
def F6E2M3FN : Type<CPred<"::llvm::isa<::mlir::Float6E2M3FNType>($_self)">, "f6E2M3FN type">,
BuildableType<"$_builder.getType<Float6E2M3FNType>()">;
-def F6E3M2FN : Type<CPred<"::llvm::isa<::mlir::Float6E3M2FNType($_self)">, "f6E3M2FN type">,
+def F6E3M2FN : Type<CPred<"::llvm::isa<::mlir::Float6E3M2FNType>($_self)">, "f6E3M2FN type">,
BuildableType<"$_builder.getType<Float6E3M2FNType>()">;
def F8E8M0FNU : Type<CPred<"::llvm::isa<::mlir::Float8E8M0FNUType>($_self)">, "f8E8M0FNU type">,
BuildableType<"$_builder.getType<Float8E8M0FNUType>()">;
More information about the Mlir-commits
mailing list