mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
0eb6b17f22
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 llvm-svn: 374865
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)
|