Changes in src/ControlStruct/Mutate.cc [982d63f:d3b7937]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ControlStruct/Mutate.cc
r982d63f rd3b7937 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // Mutate.cc -- 7 // Mutate.cc -- 8 8 // 9 9 // Author : Rodolfo G. Esteves … … 39 39 ForExprMutator formut; 40 40 41 // transform choose statements into switch statements42 ChooseMutator chmut;43 44 41 // normalizes label definitions and generates multi-level 45 42 // exit labels 46 43 LabelFixer lfix; 44 45 // transform choose statements into switch statements 46 ChooseMutator chmut; 47 47 48 48 // expand case ranges and turn fallthru into a null statement … … 53 53 54 54 mutateAll( translationUnit, formut ); 55 acceptAll( translationUnit, lfix ); 55 56 mutateAll( translationUnit, chmut ); 56 acceptAll( translationUnit, lfix );57 57 mutateAll( translationUnit, ranges ); 58 58 //mutateAll( translationUnit, exc );
Note:
See TracChangeset
for help on using the changeset viewer.