Author: Tom Stellard Date: 2021-08-10T19:02:49-07:00 New Revision: 67970771d91c3f77fe3e2e1f8989afd7e9cdab3c
URL: https://github.com/llvm/llvm-project/commit/67970771d91c3f77fe3e2e1f8989afd7e9cdab3c DIFF: https://github.com/llvm/llvm-project/commit/67970771d91c3f77fe3e2e1f8989afd7e9cdab3c.diff LOG: libcang: Add missing function to libclang.map This function is marked with CINDEX_LINKAGE, but was never added to the export list / linker script. Reviewed By: jrtc27 Differential Revision: https://reviews.llvm.org/D106974 (cherry picked from commit a4edb2b1ba0bda9042e87ca3f3e1b9f70598df9a) Added: Modified: clang/tools/libclang/libclang.map Removed: ################################################################################ diff --git a/clang/tools/libclang/libclang.map b/clang/tools/libclang/libclang.map index 932903bb4140..aee46b144845 100644 --- a/clang/tools/libclang/libclang.map +++ b/clang/tools/libclang/libclang.map @@ -49,6 +49,7 @@ LLVM_13 { clang_CompileCommand_getMappedSourceContent; clang_CompileCommand_getMappedSourcePath; clang_CompileCommand_getNumArgs; + clang_CompileCommand_getNumMappedSources; clang_CompileCommands_dispose; clang_CompileCommands_getCommand; clang_CompileCommands_getSize; _______________________________________________ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
