mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2026-07-19 23:24:47 -04:00
llvm-undname; Add more test coverage for demangleFunctionClass()
Also add two FC_Far that seem to be missing, by symmetry from the public and protected cases. (But FC_Far isn't really a thing anymore, so this doesn't really have an observable effect.) llvm-svn: 362344
This commit is contained in:
@@ -1587,11 +1587,11 @@ FuncClass Demangler::demangleFunctionClass(StringView &MangledName) {
|
||||
case 'C':
|
||||
return FuncClass(FC_Private | FC_Static);
|
||||
case 'D':
|
||||
return FuncClass(FC_Private | FC_Static);
|
||||
return FuncClass(FC_Private | FC_Static | FC_Far);
|
||||
case 'E':
|
||||
return FuncClass(FC_Private | FC_Virtual);
|
||||
case 'F':
|
||||
return FuncClass(FC_Private | FC_Virtual);
|
||||
return FuncClass(FC_Private | FC_Virtual | FC_Far);
|
||||
case 'G':
|
||||
return FuncClass(FC_Private | FC_StaticThisAdjust);
|
||||
case 'H':
|
||||
|
||||
Reference in New Issue
Block a user