Changeset 0522ebe for src/CodeGen
- Timestamp:
- Feb 26, 2024, 3:49:23 AM (14 months ago)
- Branches:
- master
- Children:
- a4da45e
- Parents:
- c17dc80
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/CodeGen/GenType.cc ¶
rc17dc80 r0522ebe 46 46 void postvisit( ast::UnionInstType const * type ); 47 47 void postvisit( ast::EnumInstType const * type ); 48 void postvisit( ast::EnumPosType const * type ); 48 49 void postvisit( ast::TypeInstType const * type ); 49 50 void postvisit( ast::TupleType const * type ); … … 239 240 } 240 241 242 void GenType::postvisit( ast::EnumPosType const * type ) { 243 postvisit( type->instance ); 244 } 245 241 246 void GenType::postvisit( ast::TypeInstType const * type ) { 242 247 assertf( !options.genC, "TypeInstType should not reach code generation." );
Note: See TracChangeset
for help on using the changeset viewer.