mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
46d5d397d9
Add a demangling support for a small subset of a new Rust mangling scheme, with complete support planned as a follow up work. Intergate Rust demangling into llvm-cxxfilt and use llvm-cxxfilt for end-to-end testing. The new Rust mangling scheme uses "_R" as a prefix, which makes it easy to disambiguate it from other mangling schemes. The public API is modeled after __cxa_demangle / llvm::itaniumDemangle, since potential candidates for further integration use those. Reviewed By: dblaikie Differential Revision: https://reviews.llvm.org/D101444
13 lines
198 B
CMake
13 lines
198 B
CMake
set(LLVM_LINK_COMPONENTS
|
|
Demangle
|
|
Support
|
|
)
|
|
|
|
add_llvm_unittest(DemangleTests
|
|
DemangleTest.cpp
|
|
ItaniumDemangleTest.cpp
|
|
PartialDemangleTest.cpp
|
|
RustDemangleTest.cpp
|
|
StringViewTest.cpp
|
|
)
|