Changeset 59c8dff for src/CodeGen
- Timestamp:
- Jan 19, 2024, 2:42:58 AM (21 months ago)
- Branches:
- master
- Children:
- f988834
- Parents:
- 8b4faf6
- Location:
- src/CodeGen
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/CodeGenerator.cpp
r8b4faf6 r59c8dff 778 778 } 779 779 780 void CodeGenerator::postvisit( ast::EnumPosExpr const * expr ) { 781 assertf( !options.genC, "EnumPosExpr should not reach code generation." ); 782 output << "__CFA_enumeration_pos(" << genType( expr->type, "", options ) << ")"; 783 } 784 780 785 void CodeGenerator::postvisit( ast::LogicalExpr const * expr ) { 781 786 extension( expr ); -
src/CodeGen/CodeGenerator.hpp
r8b4faf6 r59c8dff 76 76 void postvisit( ast::OffsetPackExpr const * ); 77 77 void postvisit( ast::LogicalExpr const * ); 78 void postvisit( ast::EnumPosExpr const * ); 78 79 void postvisit( ast::ConditionalExpr const * ); 79 80 void postvisit( ast::CommaExpr const * );
Note:
See TracChangeset
for help on using the changeset viewer.