mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
1471b048f9
c++filt does not attempt to demangle symbols which do not match its expected format. This means that the symbol must start with _Z or ___Z (block invocation function extension). Any other symbols are returned as is. Note that this is different from the behaviour of __cxa_demangle which will demangle fragments. llvm-svn: 292467
7 lines
178 B
Plaintext
7 lines
178 B
Plaintext
RUN: llvm-cxxfilt _Z1fi __Z1fi f ___ZSt1ff_block_invoke | FileCheck %s
|
|
|
|
CHECK: f(int)
|
|
CHECK-NEXT: __Z1fi
|
|
CHECK-NEXT: f
|
|
CHECK-NEXT: invocation function for block in std::f(float)
|