File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -1434,29 +1434,25 @@ const TypeInfo &IRGenFunction::getTypeInfo(SILType T) {
1434
1434
1435
1435
// / Return the SIL-lowering of the given type.
1436
1436
SILType IRGenModule::getLoweredType (AbstractionPattern orig, Type subst) const {
1437
- // FIXME: Expansion
1438
1437
return getSILTypes ().getLoweredType (orig, subst,
1439
- ResilienceExpansion::Minimal );
1438
+ ResilienceExpansion::Maximal );
1440
1439
}
1441
1440
1442
1441
// / Return the SIL-lowering of the given type.
1443
1442
SILType IRGenModule::getLoweredType (Type subst) const {
1444
- // FIXME: Expansion
1445
1443
return getSILTypes ().getLoweredType (subst,
1446
- ResilienceExpansion::Minimal );
1444
+ ResilienceExpansion::Maximal );
1447
1445
}
1448
1446
1449
1447
// / Return the SIL-lowering of the given type.
1450
1448
const Lowering::TypeLowering &IRGenModule::getTypeLowering (SILType type) const {
1451
- // FIXME: Expansion
1452
1449
return getSILTypes ().getTypeLowering (type,
1453
- ResilienceExpansion::Minimal );
1450
+ ResilienceExpansion::Maximal );
1454
1451
}
1455
1452
1456
1453
bool IRGenModule::isTypeABIAccessible (SILType type) const {
1457
- // FIXME: Expansion
1458
1454
return getSILModule ().isTypeABIAccessible (type,
1459
- ResilienceExpansion::Minimal );
1455
+ ResilienceExpansion::Maximal );
1460
1456
}
1461
1457
1462
1458
// / Get a pointer to the storage type for the given type. Note that,
You can’t perform that action at this time.
0 commit comments