File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
branches/master-next/lib/SIL Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: 65b3164726f2e62dff31e90a5cb5e3fb67cc82bf
3
- refs/heads/master-next: 5847e163c1a148f9091c016b46c76b61b9594348
3
+ refs/heads/master-next: b7ef5c7d42dd1858dd1eafdbba0be6d5dd5b1345
4
4
refs/tags/osx-passed: b6b74147ef8a386f532cf9357a1bde006e552c54
5
5
refs/tags/swift-2.2-SNAPSHOT-2015-12-01-a: 6bb18e013c2284f2b45f5f84f2df2887dc0f7dea
6
6
refs/tags/swift-2.2-SNAPSHOT-2015-12-01-b: 66d897bfcf64a82cb9a87f5e663d889189d06d07
Original file line number Diff line number Diff line change @@ -854,8 +854,8 @@ namespace {
854
854
unsigned index = 0 ;
855
855
for (auto elt : tupleTy.getElementTypes ()) {
856
856
auto silElt = SILType::getPrimitiveType (elt, silTy.getCategory ());
857
- // FIXME: Expansion
858
- children.push_back (Child{index, M. Types . getTypeLowering (silElt) });
857
+ auto &eltTL = M. Types . getTypeLowering (silElt, getResilienceExpansion ());
858
+ children.push_back (Child{index, eltTL });
859
859
++index;
860
860
}
861
861
}
@@ -888,9 +888,9 @@ namespace {
888
888
assert (structDecl);
889
889
890
890
for (auto prop : structDecl->getStoredProperties ()) {
891
- SILType propTy = silTy.getFieldType (prop, M);
892
- // FIXME: Expansion
893
- children.push_back (Child{prop, M. Types . getTypeLowering (propTy) });
891
+ SILType propTy = silTy.getFieldType (prop, M);
892
+ auto &propTL = M. Types . getTypeLowering (propTy, getResilienceExpansion ());
893
+ children.push_back (Child{prop, propTL });
894
894
}
895
895
}
896
896
};
You can’t perform that action at this time.
0 commit comments