[PATCH] D103910: [llvm] Sync DebugInfo.h with DebugInfoFlags.def
Jan Kratochvil via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jun 8 09:38:41 PDT 2021
jankratochvil created this revision.
jankratochvil added reviewers: aprantl, dblaikie.
jankratochvil added a project: LLVM.
Herald added a reviewer: deadalnix.
jankratochvil requested review of this revision.
It is obviously correct but cannot such change have some stable API impact?
OCaml binding is more seriously out of sync but I have not tried to sync it.
Used a simple shell script <https://people.redhat.com/jkratoch/llvm-DebugInfoFlags.def> to sync it.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D103910
Files:
llvm/include/llvm-c/DebugInfo.h
Index: llvm/include/llvm-c/DebugInfo.h
===================================================================
--- llvm/include/llvm-c/DebugInfo.h
+++ llvm/include/llvm-c/DebugInfo.h
@@ -42,7 +42,7 @@
LLVMDIFlagStaticMember = 1 << 12,
LLVMDIFlagLValueReference = 1 << 13,
LLVMDIFlagRValueReference = 1 << 14,
- LLVMDIFlagReserved = 1 << 15,
+ LLVMDIFlagExportSymbols = 1 << 15,
LLVMDIFlagSingleInheritance = 1 << 16,
LLVMDIFlagMultipleInheritance = 2 << 16,
LLVMDIFlagVirtualInheritance = 3 << 16,
@@ -57,6 +57,7 @@
LLVMDIFlagNonTrivial = 1 << 26,
LLVMDIFlagBigEndian = 1 << 27,
LLVMDIFlagLittleEndian = 1 << 28,
+ LLVMDIFlagAllCallsDescribed = 1 << 29,
LLVMDIFlagIndirectVirtualBase = (1 << 2) | (1 << 5),
LLVMDIFlagAccessibility = LLVMDIFlagPrivate | LLVMDIFlagProtected |
LLVMDIFlagPublic,
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D103910.350630.patch
Type: text/x-patch
Size: 854 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210608/c54e3a35/attachment.bin>
More information about the llvm-commits
mailing list