[llvm] [LLVM-C] Move LLVMDISubrangeTypeMetadataKind to end of LLVMMetadataKind enum (PR #132268)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 20 11:25:57 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-debuginfo
Author: Alan (alan-j-hu)
<details>
<summary>Changes</summary>
Inserting a new enum constant in the middle of the enum breaks the ABI for that enum. Commit e298fc2 introduced this issue, which was revealed because the OCaml binding tests failed.
---
Full diff: https://github.com/llvm/llvm-project/pull/132268.diff
1 Files Affected:
- (modified) llvm/include/llvm-c/DebugInfo.h (+1-1)
``````````diff
diff --git a/llvm/include/llvm-c/DebugInfo.h b/llvm/include/llvm-c/DebugInfo.h
index 9d0875a4ed8d8..63f0d4c7b367d 100644
--- a/llvm/include/llvm-c/DebugInfo.h
+++ b/llvm/include/llvm-c/DebugInfo.h
@@ -172,7 +172,6 @@ enum {
LLVMDIEnumeratorMetadataKind,
LLVMDIBasicTypeMetadataKind,
LLVMDIDerivedTypeMetadataKind,
- LLVMDISubrangeTypeMetadataKind,
LLVMDICompositeTypeMetadataKind,
LLVMDISubroutineTypeMetadataKind,
LLVMDIFileMetadataKind,
@@ -196,6 +195,7 @@ enum {
LLVMDIGenericSubrangeMetadataKind,
LLVMDIArgListMetadataKind,
LLVMDIAssignIDMetadataKind,
+ LLVMDISubrangeTypeMetadataKind,
};
typedef unsigned LLVMMetadataKind;
``````````
</details>
https://github.com/llvm/llvm-project/pull/132268
More information about the llvm-commits
mailing list