Changeset d60780c for src/GenPoly
- Timestamp:
- Jun 13, 2019, 8:28:13 AM (6 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- d76f32c, dc5072f
- Parents:
- d7a02ae (diff), 21300d7 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
src/GenPoly/Lvalue.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/Lvalue.cc
rd7a02ae rd60780c 200 200 if(i == end) { return appExpr; } 201 201 for ( auto p : unsafe_group_iterate( appExpr->args, ftype->parameters ) ) { 202 if (i == end) break;203 202 Expression *& arg = std::get<0>( p ); 204 203 Type * formal = std::get<1>( p )->get_type(); … … 245 244 } 246 245 ++i; 246 if (i == end) break; 247 247 } 248 248 }
Note:
See TracChangeset
for help on using the changeset viewer.