@@ -288,10 +288,8 @@ MAP(swift::TypeBase, TypeTag)
288
288
MAP (swift::BuiltinUnsafeValueBufferType, BuiltinUnsafeValueBufferTypeTag)
289
289
MAP (swift::BuiltinDefaultActorStorageType, BuiltinDefaultActorStorageTypeTag)
290
290
MAP (swift::BuiltinVectorType, BuiltinVectorTypeTag)
291
- #if CODEQL_SWIFT_VERSION_GE(5, 9)
292
- MAP (swift::BuiltinPackIndexType, void ) // TODO: (introduced in 5.9)
293
- MAP(swift::BuiltinNonDefaultDistributedActorStorageType, void ) // TODO: (introduced in 5.9)
294
- #endif
291
+ MAP (swift::BuiltinPackIndexType, void ) // SIL type, cannot really appear in the frontend run
292
+ MAP (swift::BuiltinNonDefaultDistributedActorStorageType, void ) // Does not appear in AST/SIL, only used during IRGen
295
293
MAP (swift::TupleType, TupleTypeTag)
296
294
MAP (swift::ReferenceStorageType, ReferenceStorageTypeTag)
297
295
MAP (swift::WeakStorageType, WeakStorageTypeTag)
@@ -328,14 +326,12 @@ MAP(swift::TypeBase, TypeTag)
328
326
MAP (swift::AnyFunctionType, AnyFunctionTypeTag)
329
327
MAP (swift::FunctionType, FunctionTypeTag)
330
328
MAP (swift::GenericFunctionType, GenericFunctionTypeTag)
331
- MAP (swift::SILFunctionType, void ) // SIL types cannot really appear in the frontend run)
332
- MAP (swift::SILBlockStorageType, void ) // SIL types cannot really appear in the frontend run)
333
- MAP (swift::SILBoxType, void ) // SIL types cannot really appear in the frontend run)
334
- MAP (swift::SILMoveOnlyWrappedType, void ) // SIL types cannot really appear in the frontend run)
335
- MAP (swift::SILTokenType, void ) // SIL types cannot really appear in the frontend run)
336
- #if CODEQL_SWIFT_VERSION_GE(5, 9)
337
- MAP (swift::SILPackType, void ) // TODO: (introduced in 5.9)
338
- #endif
329
+ MAP (swift::SILFunctionType, void ) // SIL types cannot really appear in the frontend run
330
+ MAP (swift::SILBlockStorageType, void ) // SIL types cannot really appear in the frontend run
331
+ MAP (swift::SILBoxType, void ) // SIL types cannot really appear in the frontend run
332
+ MAP (swift::SILMoveOnlyWrappedType, void ) // SIL types cannot really appear in the frontend run
333
+ MAP (swift::SILTokenType, void ) // SIL types cannot really appear in the frontend run
334
+ MAP (swift::SILPackType, void ) // SIL types cannot really appear in the frontend run
339
335
MAP (swift::ProtocolCompositionType, ProtocolCompositionTypeTag)
340
336
MAP (swift::ParameterizedProtocolType, ParameterizedProtocolTypeTag)
341
337
MAP (swift::ExistentialType, ExistentialTypeTag)
0 commit comments