Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ControlStruct/Mutate.cc

    r982d63f rd3b7937  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // Mutate.cc --
     7// Mutate.cc -- 
    88//
    99// Author           : Rodolfo G. Esteves
     
    3939                ForExprMutator formut;
    4040
    41                 // transform choose statements into switch statements
    42                 ChooseMutator chmut;
    43 
    4441                // normalizes label definitions and generates multi-level
    4542                // exit labels
    4643                LabelFixer lfix;
     44
     45                // transform choose statements into switch statements
     46                ChooseMutator chmut;
    4747
    4848                // expand case ranges and turn fallthru into a null statement
     
    5353
    5454                mutateAll( translationUnit, formut );
     55                acceptAll( translationUnit, lfix );
    5556                mutateAll( translationUnit, chmut );
    56                 acceptAll( translationUnit, lfix );
    5757                mutateAll( translationUnit, ranges );
    5858                //mutateAll( translationUnit, exc );
Note: See TracChangeset for help on using the changeset viewer.