Merge remote-tracking branch 'origin/master' into master-next

This commit is contained in:
swift-ci
2018-07-23 20:39:45 -07:00
91 changed files with 1935 additions and 136 deletions

View File

@@ -501,6 +501,7 @@ static uint8_t getRawReadImplKind(swift::ReadImplKind kind) {
CASE(Get)
CASE(Inherited)
CASE(Address)
CASE(Read)
#undef CASE
}
llvm_unreachable("bad kind");
@@ -517,6 +518,7 @@ static unsigned getRawWriteImplKind(swift::WriteImplKind kind) {
CASE(StoredWithObservers)
CASE(InheritedWithObservers)
CASE(MutableAddress)
CASE(Modify)
#undef CASE
}
llvm_unreachable("bad kind");
@@ -532,6 +534,7 @@ static unsigned getRawReadWriteImplKind(swift::ReadWriteImplKind kind) {
CASE(MaterializeForSet)
CASE(MutableAddress)
CASE(MaterializeToTemporary)
CASE(Modify)
#undef CASE
}
llvm_unreachable("bad kind");