File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
mlir/include/mlir/Dialect/LLVMIR Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -716,12 +716,15 @@ def FramePointerKindNonLeaf
716
716
: LLVM_EnumAttrCase<"NonLeaf", "non-leaf", "NonLeaf", 1>;
717
717
def FramePointerKindAll
718
718
: LLVM_EnumAttrCase<"All", "all", "All", 2>;
719
+ def FramePointerKindReserved
720
+ : LLVM_EnumAttrCase<"Reserved", "reserved", "Reserved", 3>;
719
721
720
722
def FramePointerKindEnum : LLVM_EnumAttr<
721
723
"FramePointerKind",
722
724
"::llvm::FramePointerKind",
723
725
"LLVM FramePointerKind",
724
- [FramePointerKindNone, FramePointerKindNonLeaf, FramePointerKindAll]> {
726
+ [FramePointerKindNone, FramePointerKindNonLeaf,
727
+ FramePointerKindAll, FramePointerKindReserved]> {
725
728
let cppNamespace = "::mlir::LLVM::framePointerKind";
726
729
}
727
730
You can’t perform that action at this time.
0 commit comments