Changes in src/SynTree/Mutator.cc [47534159:7f5566b]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/SynTree/Mutator.cc
r47534159 r7f5566b 251 251 } 252 252 253 Expression *Mutator::mutate( AlignofExpr *alignofExpr ) {254 mutateAll( alignofExpr->get_results(), *this );255 if ( alignofExpr->get_isType() ) {256 alignofExpr->set_type( maybeMutate( alignofExpr->get_type(), *this ) );257 } else {258 alignofExpr->set_expr( maybeMutate( alignofExpr->get_expr(), *this ) );259 }260 return alignofExpr;261 }262 263 253 Expression *Mutator::mutate( AttrExpr *attrExpr ) { 264 254 mutateAll( attrExpr->get_results(), *this );
Note:
See TracChangeset
for help on using the changeset viewer.