File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -73,14 +73,14 @@ void OutliningMetadataCollector::collectTypeMetadataForLayout(SILType ty) {
73
73
collectRepresentationTypeMetadata (ty);
74
74
}
75
75
76
- void OutliningMetadataCollector::collectFormalTypeMetadata (CanType type ) {
76
+ void OutliningMetadataCollector::collectFormalTypeMetadata (CanType ty ) {
77
77
// If the type has no archetypes, we can emit it from scratch in the callee.
78
- assert (type ->hasArchetype ());
78
+ assert (ty ->hasArchetype ());
79
79
80
- auto key = LocalTypeDataKey (type , LocalTypeDataKind::forFormalTypeMetadata ());
80
+ auto key = LocalTypeDataKey (ty , LocalTypeDataKind::forFormalTypeMetadata ());
81
81
if (Values.count (key)) return ;
82
82
83
- auto metadata = IGF.emitTypeMetadataRef (type );
83
+ auto metadata = IGF.emitTypeMetadataRef (ty );
84
84
Values.insert ({key, metadata});
85
85
}
86
86
You can’t perform that action at this time.
0 commit comments