Changeset 7faab5e
- Timestamp:
- Dec 11, 2017, 4:42:11 PM (7 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:
- ebf0820
- Parents:
- 6ba16fa
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/ResolvExpr/AlternativeFinder.cc ¶
r6ba16fa r7faab5e 595 595 596 596 ArgPack() 597 : parent(0), expr(), cost(Cost::zero), env(), need(), have(), openVars(), nextArg(0), 598 597 : parent(0), expr(), cost(Cost::zero), env(), need(), have(), openVars(), nextArg(0), 599 598 tupleStart(0), nextExpl(0), explAlt(0) {} 600 599 … … 706 705 Type* argType; 707 706 708 if ( nTuples > 0 ) { 709 // first iteration, push empty tuple expression 707 if ( nTuples > 0 || ! results[i].expr ) { 708 // first iteration or no expression to clone, 709 // push empty tuple expression 710 710 newResult.parent = i; 711 711 std::list<Expression*> emptyList;
Note: See TracChangeset
for help on using the changeset viewer.