Changes in src/GenPoly/PolyMutator.cc [4e06c1e:540de412]
- File:
-
- 1 edited
-
src/GenPoly/PolyMutator.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/PolyMutator.cc
r4e06c1e r540de412 9 9 // Author : Richard C. Bilson 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Tue Jul 12 17:39:32201613 // Update Count : 1 211 // Last Modified By : Rob Schluntz 12 // Last Modified On : Mon May 02 14:50:58 2016 13 // Update Count : 11 14 14 // 15 15 … … 104 104 } 105 105 106 Statement * PolyMutator::mutate(ChooseStmt *switchStmt) { 107 mutateStatementList( switchStmt->get_branches() ); 108 switchStmt->set_condition( mutateExpression( switchStmt->get_condition() ) ); 109 return switchStmt; 110 } 111 106 112 Statement * PolyMutator::mutate(CaseStmt *caseStmt) { 107 113 mutateStatementList( caseStmt->get_statements() );
Note:
See TracChangeset
for help on using the changeset viewer.