================ @@ -54,6 +54,8 @@ LLVM_13 { clang_Cursor_Evaluate; clang_Cursor_getArgument; clang_Cursor_getBriefCommentText; + clang_Cursor_getBinaryOpcode; + clang_Cursor_getBinaryOpcodeStr; ---------------- Endilll wrote:
This is symbol versioning, which allows us to update libclang functions, retaining backwards ABI compatibility. I think the most famous user of this mechanism is glibc. I don't think that this is critical, but I can see how confusing it might be when you list exported function in libclang 13 and libclang 19, and see that libclang 19 claims that libclang 13 should have two more functions added in this patch. This should fixed and backported to 19. We're far enough into release schedule (approaching rc2) that this has some urgency. https://github.com/llvm/llvm-project/pull/98489 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits