mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
d5dc9ff9ab
Ports clang's mangling support added in r354633 to llvm-undname. llvm-svn: 361839
13 lines
338 B
Plaintext
13 lines
338 B
Plaintext
; RUN: llvm-undname < %s | FileCheck %s
|
|
|
|
; CHECK-NOT: Invalid mangled name
|
|
|
|
??__LA@@QEAA?AUno_suspend@@XZ
|
|
; CHECK: struct no_suspend __cdecl A::operator co_await(void)
|
|
|
|
??__MS@@QEAA?AVstrong_ordering@std@@AEBU0@@Z'
|
|
; CHECK: class std::strong_ordering __cdecl S::operator<=>(struct S const &)
|
|
|
|
?f@@YAX_Q@Z
|
|
; CHECK: void __cdecl f(char8_t)
|