Changes in src/ControlStruct/LabelFixer.cc [6b6a3b8:5cdeecd]
- File:
-
- 1 edited
-
src/ControlStruct/LabelFixer.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ControlStruct/LabelFixer.cc
r6b6a3b8 r5cdeecd 9 9 // Author : Rodolfo G. Esteves 10 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Mon Mar 11 22:26:02 201913 // Update Count : 1 5911 // Last Modified By : Andrew Beach 12 // Last Modified On : Tue Jan 21 10:32:00 2020 13 // Update Count : 160 14 14 // 15 15 … … 21 21 #include "ControlStruct/LabelGenerator.h" // for LabelGenerator 22 22 #include "LabelFixer.h" 23 #include "MLEMutator.h" // for M LEMutator23 #include "MLEMutator.h" // for MultiLevelExitMutator 24 24 #include "SynTree/Declaration.h" // for FunctionDecl 25 25 #include "SynTree/Expression.h" // for NameExpr, Expression, Unty... … … 44 44 45 45 void LabelFixer::postvisit( FunctionDecl * functionDecl ) { 46 PassVisitor<M LEMutator> mlemut( resolveJumps(), generator );47 functionDecl->acceptMutator( mlem ut);46 PassVisitor<MultiLevelExitMutator> mlem( resolveJumps(), generator ); 47 functionDecl->acceptMutator( mlem ); 48 48 } 49 49
Note:
See TracChangeset
for help on using the changeset viewer.