Changeset b3b2077 for src/GenPoly
- Timestamp:
- Nov 9, 2016, 2:05:09 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 23bb1b9
- Parents:
- 8780e30
- File:
-
- 1 edited
-
src/GenPoly/Specialize.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/Specialize.cc
r8780e30 rb3b2077 147 147 148 148 Expression * Specialize::doSpecialization( Type *formalType, Expression *actual, InferredParams *inferParams ) { 149 assert ( actual->has_result());149 assertf( actual->has_result(), "attempting to specialize an untyped expression" ); 150 150 if ( needsSpecialization( formalType, actual->get_result(), env ) ) { 151 151 FunctionType *funType;
Note:
See TracChangeset
for help on using the changeset viewer.