@@ -146,7 +146,6 @@ MAP(swift::Expr, ExprTag)
146146 MAP (swift::ImplicitConversionExpr, ImplicitConversionExprTag)
147147 MAP (swift::LoadExpr, LoadExprTag)
148148 MAP (swift::DestructureTupleExpr, DestructureTupleExprTag)
149- MAP (swift::UnresolvedTypeConversionExpr, UnresolvedTypeConversionExprTag)
150149 MAP (swift::FunctionConversionExpr, FunctionConversionExprTag)
151150 MAP (swift::CovariantFunctionConversionExpr, CovariantFunctionConversionExprTag)
152151 MAP (swift::CovariantReturnConversionExpr, CovariantReturnConversionExprTag)
@@ -267,8 +266,7 @@ MAP(swift::TypeRepr, TypeReprTag)
267266MAP (swift::Type, TypeTag)
268267MAP (swift::TypeBase, TypeTag)
269268 MAP (swift::ErrorType, ErrorTypeTag)
270- MAP (swift::UnresolvedType, UnresolvedTypeTag)
271- MAP (swift::PlaceholderType, void ) // appears in ambiguous types but are then transformed to UnresolvedType
269+ MAP (swift::PlaceholderType, void ) // appears in ambiguous types but are then transformed to ErrorType
272270 MAP (swift::BuiltinType, BuiltinTypeTag)
273271 MAP (swift::AnyBuiltinIntegerType, AnyBuiltinIntegerTypeTag)
274272 MAP (swift::BuiltinIntegerType, BuiltinIntegerTypeTag)
@@ -285,7 +283,8 @@ MAP(swift::TypeBase, TypeTag)
285283 MAP (swift::BuiltinVectorType, BuiltinVectorTypeTag)
286284 MAP (swift::BuiltinPackIndexType, void ) // SIL type, cannot really appear in the frontend run
287285 MAP (swift::BuiltinNonDefaultDistributedActorStorageType, void ) // Does not appear in AST/SIL, only used during IRGen
288- MAP (swift::BuiltinFixedArrayType, BuiltinFixedArrayTypeTag)
286+ MAP (swift::BuiltinGenericType, BuiltinGenericTypeTag)
287+ MAP (swift::BuiltinFixedArrayType, BuiltinFixedArrayTypeTag)
289288 MAP (swift::BuiltinUnboundGenericType, void ) // Only used during type resolution
290289 MAP (swift::BuiltinImplicitActorType, void ) // SIL type
291290 MAP (swift::TupleType, TupleTypeTag)
0 commit comments