Skip to content

Commit 73d2e86

Browse files
committed
---
yaml --- r: 347195 b: refs/heads/master c: 190c4cd h: refs/heads/master i: 347193: cdda224 347191: 4c20aa7
1 parent 4c14221 commit 73d2e86

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 96a7692e0a1d0282df753666ea19ec70d3619a16
2+
refs/heads/master: 190c4cd13331167dd69c96054ff431b0fcf376c5
33
refs/heads/master-next: 203b3026584ecad859eb328b2e12490099409cd5
44
refs/tags/osx-passed: b6b74147ef8a386f532cf9357a1bde006e552c54
55
refs/tags/swift-2.2-SNAPSHOT-2015-12-01-a: 6bb18e013c2284f2b45f5f84f2df2887dc0f7dea

trunk/lib/IRGen/GenType.cpp

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1434,29 +1434,25 @@ const TypeInfo &IRGenFunction::getTypeInfo(SILType T) {
14341434

14351435
/// Return the SIL-lowering of the given type.
14361436
SILType IRGenModule::getLoweredType(AbstractionPattern orig, Type subst) const {
1437-
// FIXME: Expansion
14381437
return getSILTypes().getLoweredType(orig, subst,
1439-
ResilienceExpansion::Minimal);
1438+
ResilienceExpansion::Maximal);
14401439
}
14411440

14421441
/// Return the SIL-lowering of the given type.
14431442
SILType IRGenModule::getLoweredType(Type subst) const {
1444-
// FIXME: Expansion
14451443
return getSILTypes().getLoweredType(subst,
1446-
ResilienceExpansion::Minimal);
1444+
ResilienceExpansion::Maximal);
14471445
}
14481446

14491447
/// Return the SIL-lowering of the given type.
14501448
const Lowering::TypeLowering &IRGenModule::getTypeLowering(SILType type) const {
1451-
// FIXME: Expansion
14521449
return getSILTypes().getTypeLowering(type,
1453-
ResilienceExpansion::Minimal);
1450+
ResilienceExpansion::Maximal);
14541451
}
14551452

14561453
bool IRGenModule::isTypeABIAccessible(SILType type) const {
1457-
// FIXME: Expansion
14581454
return getSILModule().isTypeABIAccessible(type,
1459-
ResilienceExpansion::Minimal);
1455+
ResilienceExpansion::Maximal);
14601456
}
14611457

14621458
/// Get a pointer to the storage type for the given type. Note that,

0 commit comments

Comments
 (0)