[clang] a4edb2b - libcang: Add missing function to libclang.map

Tom Stellard via cfe-commits cfe-commits at lists.llvm.org
Wed Jul 28 21:07:20 PDT 2021


Author: Tom Stellard
Date: 2021-07-28T21:06:40-07:00
New Revision: a4edb2b1ba0bda9042e87ca3f3e1b9f70598df9a

URL: https://github.com/llvm/llvm-project/commit/a4edb2b1ba0bda9042e87ca3f3e1b9f70598df9a
DIFF: https://github.com/llvm/llvm-project/commit/a4edb2b1ba0bda9042e87ca3f3e1b9f70598df9a.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

Added: 
    

Modified: 
    clang/tools/libclang/libclang.map

Removed: 
    


################################################################################
diff  --git a/clang/tools/libclang/libclang.map b/clang/tools/libclang/libclang.map
index 932903bb41409..aee46b1448457 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;


        


More information about the cfe-commits mailing list