Changeset 5518719 for src/ControlStruct/MLEMutator.h
- Timestamp:
- Jan 21, 2020, 6:14:40 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 9d6317f
- Parents:
- 26fd986 (diff), 5cdeecd (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ControlStruct/MLEMutator.h
r26fd986 r5518719 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Andrew Beach 12 // Last Modified On : T hr Jan 16 12:46:00 202013 // Update Count : 4 612 // Last Modified On : Tue Jan 21 10:33:00 2020 13 // Update Count : 47 14 14 // 15 16 // Can anyone figure out what MLE stands for?17 15 18 16 #pragma once … … 32 30 class LabelGenerator; 33 31 34 class MLEMutator : public WithVisitorRef<MLEMutator>, public WithShortCircuiting, public WithGuards { 32 class MultiLevelExitMutator : public WithVisitorRef<MultiLevelExitMutator>, 33 public WithShortCircuiting, public WithGuards { 35 34 public: 36 35 class Entry; 37 MLEMutator( std::map<Label, Statement *> *t, LabelGenerator *gen = 0 ) : targetTable( t ), breakLabel(std::string("")), generator( gen ) {} 38 ~MLEMutator(); 36 MultiLevelExitMutator( std::map<Label, Statement *> *t, LabelGenerator *gen = 0 ) : 37 targetTable( t ), breakLabel(std::string("")), generator( gen ) {} 38 ~MultiLevelExitMutator(); 39 39 40 40 void premutate( CompoundStmt *cmpndStmt );
Note: See TracChangeset
for help on using the changeset viewer.