- Timestamp:
- Mar 6, 2024, 6:11:08 AM (11 months ago)
- Branches:
- master
- Children:
- 76fe046, 7a29392f
- Parents:
- f6e8c67
- Location:
- src/ResolvExpr
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/CommonType.cc
rf6e8c67 r647d633 681 681 682 682 void postvisit( const ast::EnumPosType * enumPos ) { 683 if ( auto type2AsPos =dynamic_cast<const ast::EnumPosType *>(type2) ) {683 if ( dynamic_cast<const ast::EnumPosType *>(type2) ) { 684 684 // result = commonType( type2AsPos->instance, enumPos->instance, tenv, need, have, open, widen ); 685 685 result = enumPos; 686 } else if ( auto typeAsBasic =dynamic_cast<const ast::BasicType *>(type2) ) {686 } else if ( dynamic_cast<const ast::BasicType *>(type2) ) { 687 687 result = type2; 688 688 } -
src/ResolvExpr/ConversionCost.cc
rf6e8c67 r647d633 366 366 } 367 367 368 void ConversionCost::postvisit( const ast::EnumInstType * inst) {368 void ConversionCost::postvisit( const ast::EnumInstType * ) { 369 369 static ast::ptr<ast::BasicType> integer = { new ast::BasicType( ast::BasicType::SignedInt ) }; 370 370 cost = costCalc( integer, dst, srcIsLvalue, symtab, env ); … … 375 375 376 376 void ConversionCost::postvisit( const ast::EnumPosType * src ) { 377 if ( auto dstBase =dynamic_cast<const ast::EnumPosType *>( dst ) ) {377 if ( dynamic_cast<const ast::EnumPosType *>( dst ) ) { 378 378 // cost = costCalc( src->instance, dstBase->instance, srcIsLvalue, symtab, env ); 379 379 // if ( cost < Cost::unsafe ) cost.incSafe();
Note: See TracChangeset
for help on using the changeset viewer.