Remove LocalStorageType, make it a kind of SILType.

Swift SVN r6968
This commit is contained in:
John McCall
2013-08-07 00:22:26 +00:00
parent 20ab338269
commit e9b913fb5b
37 changed files with 107 additions and 206 deletions

View File

@@ -1671,14 +1671,6 @@ Type ModuleFile::getType(TypeID TID) {
break;
}
case decls_block::LOCAL_STORAGE_TYPE: {
TypeID valueTypeID;
decls_block::LocalStorageTypeLayout::readRecord(scratch, valueTypeID);
typeOrOffset = LocalStorageType::get(getType(valueTypeID), ctx);
break;
}
case decls_block::REFERENCE_STORAGE_TYPE: {
uint8_t rawOwnership;
TypeID referentTypeID;