File tree Expand file tree Collapse file tree 3 files changed +1
-6
lines changed Expand file tree Collapse file tree 3 files changed +1
-6
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: 3574c513bbc5578dd9346b4ea9ab5995c5927bb5
3
- refs/heads/master-next: fbd98369b98f2f08182ce0a2296a4bf3f7cac42e
3
+ refs/heads/master-next: ee363355bd2cc3e20bc674da681b703c7f7f7138
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 @@ -69,8 +69,6 @@ class SILLocation {
69
69
70
70
public:
71
71
enum LocationKind : unsigned {
72
- // FIXME: NoneKind is to be removed.
73
- NoneKind = 0 ,
74
72
RegularKind = 1 ,
75
73
ReturnKind = 2 ,
76
74
ImplicitReturnKind = 3 ,
Original file line number Diff line number Diff line change @@ -760,9 +760,6 @@ class SILPrinter : public SILInstructionVisitor<SILPrinter> {
760
760
761
761
// Print the type of location.
762
762
switch (L.getKind ()) {
763
- case SILLocation::NoneKind:
764
- assert (L.isAutoGenerated () && " This kind shouldn't be printed." );
765
- break ;
766
763
case SILLocation::RegularKind:
767
764
break ;
768
765
case SILLocation::ReturnKind:
You can’t perform that action at this time.
0 commit comments