mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
AST: New mangling for method dispatch thunks
This commit is contained in:
@@ -686,6 +686,10 @@ std::string SILDeclRef::mangle(ManglingKind MKind) const {
|
||||
case SILDeclRef::ManglingKind::DynamicThunk:
|
||||
SKind = ASTMangler::SymbolKind::DynamicThunk;
|
||||
break;
|
||||
case SILDeclRef::ManglingKind::SwiftDispatchThunk:
|
||||
assert(!isForeign && !isDirectReference && !isCurried);
|
||||
SKind = ASTMangler::SymbolKind::SwiftDispatchThunk;
|
||||
break;
|
||||
}
|
||||
|
||||
switch (kind) {
|
||||
|
||||
Reference in New Issue
Block a user