Make clang_Cursor_getMangling not mangle if the declaration isn't mangled
Right now clang_Cursor_getMangling will attempt to mangle any declaration, even if the declaration isn't mangled (extern C). This results in a partially mangled name which isn't useful for much. This patch makes clang_Cursor_getMangling return an empty string if the declaration isn't mangled. Patch by Michael Wu <mwu@mozilla.com>. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@253909 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- include/clang-c/Index.h 26 additions, 0 deletionsinclude/clang-c/Index.h
- test/Index/symbol-visibility.c 7 additions, 0 deletionstest/Index/symbol-visibility.c
- tools/c-index-test/c-index-test.c 30 additions, 0 deletionstools/c-index-test/c-index-test.c
- tools/libclang/CIndex.cpp 21 additions, 0 deletionstools/libclang/CIndex.cpp
- tools/libclang/libclang.exports 1 addition, 0 deletionstools/libclang/libclang.exports
Loading
Please register or sign in to comment