[Mlir-commits] [mlir] [MLIR:LLVM] Add UWTableKind attribute (PR #135811)
Tobias Gysi
llvmlistbot at llvm.org
Tue Apr 15 09:54:02 PDT 2025
================
@@ -855,4 +855,27 @@ def ModFlagBehaviorAttr : LLVM_EnumAttr<
let cppNamespace = "::mlir::LLVM";
}
+//===----------------------------------------------------------------------===//
+// UWTableKind
+//===----------------------------------------------------------------------===//
+
+def UWTableKindNone
+ : LLVM_EnumAttrCase<"None", "none", "None", 0>;
+def UWTableKindSync
+ : LLVM_EnumAttrCase<"Sync", "sync", "Sync", 1>;
+def UWTableKindAsync
+ : LLVM_EnumAttrCase<"Async", "async", "Async", 2>;
+def UWTableKindDefault
----------------
gysit wrote:
Can you delete `UWTableKindDefault` since it seems to be unused?
https://github.com/llvm/llvm-project/pull/135811
More information about the Mlir-commits
mailing list