Remove IdentifierType from the type system.

Swift SVN r6327
This commit is contained in:
Argyrios Kyrtzidis
2013-07-17 14:57:38 +00:00
parent f616eeee8b
commit 7476762dae
10 changed files with 0 additions and 194 deletions

View File

@@ -1495,15 +1495,6 @@ Type ModuleFile::getType(TypeID TID) {
break;
}
case decls_block::IDENTIFIER_TYPE: {
TypeID mappedID;
decls_block::IdentifierTypeLayout::readRecord(scratch, mappedID);
// FIXME: Actually recreate the IdentifierType instead of just aliasing the
// underlying mapped type.
typeOrOffset = getType(mappedID);
break;
}
case decls_block::FUNCTION_TYPE: {
TypeID inputID;
TypeID resultID;