Changes in src/ControlStruct/Mutate.cc [8688ce1:4e06c1e]
- File:
-
- 1 edited
-
src/ControlStruct/Mutate.cc (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ControlStruct/Mutate.cc
r8688ce1 r4e06c1e 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : T hu Aug 4 11:39:08201613 // Update Count : 912 // Last Modified On : Tue Jul 12 17:37:45 2016 13 // Update Count : 8 14 14 // 15 15 … … 22 22 #include "LabelFixer.h" 23 23 #include "MLEMutator.h" 24 #include "CaseRangeMutator.h" 24 25 #include "ForExprMutator.h" 25 26 #include "LabelTypeChecker.h" … … 40 41 LabelFixer lfix; 41 42 43 // expand case ranges and turn fallthru into a null statement 44 CaseRangeMutator ranges; 45 42 46 //ExceptMutator exc; 43 47 // LabelTypeChecker lbl; … … 45 49 mutateAll( translationUnit, formut ); 46 50 acceptAll( translationUnit, lfix ); 51 mutateAll( translationUnit, ranges ); 47 52 //mutateAll( translationUnit, exc ); 48 53 //acceptAll( translationUnit, lbl );
Note:
See TracChangeset
for help on using the changeset viewer.