Changes in src/GenPoly/DeclMutator.cc [4e06c1e:dbd8652]
- File:
-
- 1 edited
-
src/GenPoly/DeclMutator.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/DeclMutator.cc
r4e06c1e rdbd8652 9 9 // Author : Aaron B. Moss 10 10 // Created On : Fri Nov 27 14:44:00 2015 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Tue Jul 12 17:38:46 201613 // Update Count : 211 // Last Modified By : Aaron B. Moss 12 // Last Modified On : Fri Nov 27 14:44:00 2015 13 // Update Count : 1 14 14 // 15 15 … … 167 167 } 168 168 169 Statement* DeclMutator::mutate(ChooseStmt *chooseStmt) { 170 chooseStmt->set_condition( maybeMutate( chooseStmt->get_condition(), *this ) ); 171 mutateAll( chooseStmt->get_branches(), *this ); 172 return chooseStmt; 173 } 174 169 175 Statement* DeclMutator::mutate(CaseStmt *caseStmt) { 170 176 caseStmt->set_condition( maybeMutate( caseStmt->get_condition(), *this ) );
Note:
See TracChangeset
for help on using the changeset viewer.