mirror of
https://github.com/RPCS3/llvm.git
synced 2026-01-31 01:25:19 +01:00
This corresponds to commonly used options to UnDecorateSymbolName within llvm. Add them as hidden options in llvm-undname. MS undname.exe takes numeric flags, corresponding to the UNDNAME_* constants, but instead of hardcoding in mappings for those numbers, just add textual options instead, as it the use of them here is primarily intended for testing. Differential Revision: https://reviews.llvm.org/D68917 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@374865 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
967 B
Plaintext
15 lines
967 B
Plaintext
; RUN: llvm-undname < %s | FileCheck %s
|
|
; RUN: llvm-undname --no-calling-convention < %s | FileCheck %s --check-prefix=CHECK-NO-CALLING-CONV
|
|
; RUN: llvm-undname --no-return-type < %s | FileCheck %s --check-prefix=CHECK-NO-RETURN
|
|
; RUN: llvm-undname --no-access-specifier < %s | FileCheck %s --check-prefix=CHECK-NO-ACCESS
|
|
; RUN: llvm-undname --no-member-type < %s | FileCheck %s --check-prefix=CHECK-NO-MEMBER-TYPE
|
|
; RUN: llvm-undname --no-calling-convention --no-return-type --no-access-specifier --no-member-type < %s | FileCheck %s --check-prefix=CHECK-NO-ALL
|
|
|
|
?func@MyClass@@UEAAHHH@Z
|
|
; CHECK: public: virtual int __cdecl MyClass::func(int, int)
|
|
; CHECK-NO-CALLING-CONV: public: virtual int MyClass::func(int, int)
|
|
; CHECK-NO-RETURN: public: virtual __cdecl MyClass::func(int, int)
|
|
; CHECK-NO-ACCESS: {{^}}virtual int __cdecl MyClass::func(int, int)
|
|
; CHECK-NO-MEMBER-TYPE: public: int __cdecl MyClass::func(int, int)
|
|
; CHECK-NO-ALL: {{^}}MyClass::func(int, int)
|