[llvm-branch-commits] [clang] release/19.x: [libclang] Fix symbol version of `getBinaryOpcode` functions (#101820) (PR #101824)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Sat Aug 3 07:02:23 PDT 2024
https://github.com/llvmbot created https://github.com/llvm/llvm-project/pull/101824
Backport 2bae7aeab42062e61d6f9d6458660d4a5646f7af
Requested by: @Endilll
>From 607f955c9551a6a37592c6ee0e9ec8684bb5b3eb Mon Sep 17 00:00:00 2001
From: Jannick Kremer <51118500+DeinAlptraum at users.noreply.github.com>
Date: Sat, 3 Aug 2024 14:56:54 +0100
Subject: [PATCH] [libclang] Fix symbol version of `getBinaryOpcode` functions
(#101820)
#98489 resurrected an [old patch](https://reviews.llvm.org/D10833) that
was adding new libclang functions. That PR got merged with old `LLVM_13`
symbol versions for new functions. This patch fixes this oversight.
(cherry picked from commit 2bae7aeab42062e61d6f9d6458660d4a5646f7af)
---
clang/tools/libclang/libclang.map | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/clang/tools/libclang/libclang.map b/clang/tools/libclang/libclang.map
index 91c329b5765d4..371fe512ce71c 100644
--- a/clang/tools/libclang/libclang.map
+++ b/clang/tools/libclang/libclang.map
@@ -54,8 +54,6 @@ LLVM_13 {
clang_Cursor_Evaluate;
clang_Cursor_getArgument;
clang_Cursor_getBriefCommentText;
- clang_Cursor_getBinaryOpcode;
- clang_Cursor_getBinaryOpcodeStr;
clang_Cursor_getCXXManglings;
clang_Cursor_getCommentRange;
clang_Cursor_getMangling;
@@ -430,6 +428,12 @@ LLVM_17 {
clang_getCursorUnaryOperatorKind;
};
+LLVM_19 {
+ global:
+ clang_Cursor_getBinaryOpcode;
+ clang_Cursor_getBinaryOpcodeStr;
+};
+
# Example of how to add a new symbol version entry. If you do add a new symbol
# version, please update the example to depend on the version you added.
# LLVM_X {
More information about the llvm-branch-commits
mailing list