Changeset 3f9a8d0 for src/CodeGen


Ignore:
Timestamp:
Feb 26, 2024, 8:17:20 AM (22 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
f1149ac
Parents:
1bb76ad (diff), a4da45e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/CodeGen/GenType.cc

    r1bb76ad r3f9a8d0  
    4646        void postvisit( ast::UnionInstType const * type );
    4747        void postvisit( ast::EnumInstType const * type );
     48        void postvisit( ast::EnumPosType const * type );
    4849        void postvisit( ast::TypeInstType const * type );
    4950        void postvisit( ast::TupleType const * type );
     
    239240}
    240241
     242void GenType::postvisit( ast::EnumPosType const * type ) {
     243        postvisit( type->instance );
     244}
     245
    241246void GenType::postvisit( ast::TypeInstType const * type ) {
    242247        assertf( !options.genC, "TypeInstType should not reach code generation." );
Note: See TracChangeset for help on using the changeset viewer.