mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Merge pull request #76250 from ktoso/wip-experimental-isolated-deinit
This commit is contained in:
@@ -378,6 +378,9 @@ void SILDeclRef::print(raw_ostream &OS) const {
|
||||
case SILDeclRef::Kind::Deallocator:
|
||||
OS << "!deallocator";
|
||||
break;
|
||||
case SILDeclRef::Kind::IsolatedDeallocator:
|
||||
OS << "!isolateddeallocator";
|
||||
break;
|
||||
case SILDeclRef::Kind::IVarInitializer:
|
||||
OS << "!ivarinitializer";
|
||||
break;
|
||||
@@ -4053,6 +4056,7 @@ void SILVTableEntry::print(llvm::raw_ostream &OS) const {
|
||||
case SILDeclRef::Kind::IVarDestroyer:
|
||||
case SILDeclRef::Kind::Destroyer:
|
||||
case SILDeclRef::Kind::Deallocator:
|
||||
case SILDeclRef::Kind::IsolatedDeallocator:
|
||||
HasSingleImplementation = true;
|
||||
}
|
||||
// No need to emit the signature for methods that may have only
|
||||
|
||||
Reference in New Issue
Block a user