- Notifications
You must be signed in to change notification settings - Fork14.5k
release/21.x: [libclang] Fix version for symbol clang_visitCXXMethods (#148958)#148980
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Conversation
@Endilll What do you think about merging this PR to the release branch? |
@llvm/pr-subscribers-clang Author: None (llvmbot) ChangesBackport116110e Requested by: @efriedma-quic Full diff:https://github.com/llvm/llvm-project/pull/148980.diff 1 Files Affected:
diff --git a/clang/tools/libclang/libclang.map b/clang/tools/libclang/libclang.mapindex d140a71e771a0..49c472e3833fd 100644--- a/clang/tools/libclang/libclang.map+++ b/clang/tools/libclang/libclang.map@@ -435,12 +435,12 @@ LLVM_20 { clang_getTypePrettyPrinted; clang_isBeforeInTranslationUnit; clang_visitCXXBaseClasses;- clang_visitCXXMethods; }; LLVM_21 { global: clang_getFullyQualifiedName;+ clang_visitCXXMethods; clang_Cursor_getGCCAssemblyTemplate; clang_Cursor_isGCCAssemblyHasGoto; clang_Cursor_getGCCAssemblyNumOutputs; |
Happened to spot this while looking at libclang.map for other reasons.clang_visitCXXMethods was added in LLVM 21, not LLVM 20.(cherry picked from commit116110e)
@efriedma-quic (or anyone else). If you would like to add a note about this fix in the release notes (completely optional). Please reply to this comment with a one or two sentence description of the fix. When you are done, please add the release:note label to this PR. |
Backport116110e
Requested by:@efriedma-quic