Changes in src/GenPoly/Specialize.cc [803deb1:7754cde]
- File:
-
- 1 edited
-
src/GenPoly/Specialize.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/Specialize.cc
r803deb1 r7754cde 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // Specialize.cc -- 7 // Specialize.cc -- 8 8 // 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Rob Schluntz 12 // Last Modified On : Wed Jan 20 12:40:33 201613 // Update Count : 1 812 // Last Modified On : Tue Sep 22 14:04:13 2015 13 // Update Count : 15 14 14 // 15 15 … … 140 140 return new AddressExpr( new VariableExpr( thunkFunc ) ); 141 141 } 142 142 143 143 Expression * Specialize::doSpecialization( Type *formalType, Expression *actual, InferredParams *inferParams ) { 144 assert( ! actual->get_results().empty() );145 144 if ( needsSpecialization( formalType, actual->get_results().front(), env ) ) { 146 145 FunctionType *funType; … … 199 198 Expression * Specialize::mutate( CastExpr *castExpr ) { 200 199 castExpr->get_arg()->acceptMutator( *this ); 201 if ( castExpr->get_results().empty() ) {202 // can't specialize if we don't have a return value203 return castExpr;204 }205 200 Expression *specialized = doSpecialization( castExpr->get_results().front(), castExpr->get_arg() ); 206 201 if ( specialized != castExpr->get_arg() ) {
Note:
See TracChangeset
for help on using the changeset viewer.