Changeset 1fbeebd for src/ControlStruct/Mutate.cc
- Timestamp:
- Nov 30, 2017, 5:37:15 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- ef3d798
- Parents:
- 1cb934d
- git-author:
- Rob Schluntz <rschlunt@…> (11/30/17 17:12:26)
- git-committer:
- Rob Schluntz <rschlunt@…> (11/30/17 17:37:15)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ControlStruct/Mutate.cc
r1cb934d r1fbeebd 24 24 #include "SynTree/Declaration.h" // for Declaration 25 25 #include "SynTree/Mutator.h" // for mutateAll 26 //#include "ExceptMutator.h"27 26 28 27 #include "Common/PassVisitor.h" // for PassVisitor … … 37 36 38 37 // normalizes label definitions and generates multi-level exit labels 39 LabelFixer lfix; 40 41 //ExceptMutator exc; 38 PassVisitor<LabelFixer> lfix; 42 39 43 40 mutateAll( translationUnit, formut ); 44 41 acceptAll( translationUnit, lfix ); 45 //mutateAll( translationUnit, exc );46 42 } 47 43 } // namespace CodeGen
Note: See TracChangeset
for help on using the changeset viewer.