[Mlir-commits] [mlir] a53abb2 - [mlir][IR] CommonTypeConstraints: fix syntax error (#123765)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Tue Jan 21 07:31:54 PST 2025


Author: Karlo Basioli
Date: 2025-01-21T16:31:50+01:00
New Revision: a53abb2386f9a96a8fc4a6d8e45e5543d1219b76

URL: https://github.com/llvm/llvm-project/commit/a53abb2386f9a96a8fc4a6d8e45e5543d1219b76
DIFF: https://github.com/llvm/llvm-project/commit/a53abb2386f9a96a8fc4a6d8e45e5543d1219b76.diff

LOG: [mlir][IR] CommonTypeConstraints: fix syntax error (#123765)

Added: 
    

Modified: 
    mlir/include/mlir/IR/CommonTypeConstraints.td

Removed: 
    


################################################################################
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