TypeDecoder: Don't demangle freestanding PackExpansionTypes

This commit is contained in:
Slava Pestov
2023-07-05 16:06:56 -04:00
parent fb14aef32a
commit b471cd308f
5 changed files with 2 additions and 28 deletions

View File

@@ -355,10 +355,6 @@ Type ASTBuilder::createSILPackType(ArrayRef<Type> eltTypes,
return SILPackType::get(Ctx, extInfo, elements);
}
Type ASTBuilder::createPackExpansionType(Type patternType, Type countType) {
return PackExpansionType::get(patternType, countType);
}
size_t ASTBuilder::beginPackExpansion(Type countType) {
ActivePackExpansions.push_back(countType);