Changeset a5a08a05
- Timestamp:
- Nov 8, 2021, 11:35:40 AM (3 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, master, pthread-emulation, qualifiedEnum
- Children:
- 5ee153d
- Parents:
- cb921d4
- Location:
- src/ControlStruct
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ControlStruct/FixLabels.cpp
rcb921d4 ra5a08a05 19 19 #include "AST/Pass.hpp" 20 20 #include "AST/Stmt.hpp" 21 #include "ControlStruct/LabelGenerator.h"22 21 #include "ControlStruct/MultiLevelExit.hpp" 23 22 … … 29 28 LabelToStmt labelTable; 30 29 public: 31 FixLabelsCore( LabelGenerator * gen = nullptr) : labelTable() {}30 FixLabelsCore() : labelTable() {} 32 31 33 32 void previsit( const ast::FunctionDecl * ); -
src/ControlStruct/MultiLevelExit.hpp
rcb921d4 ra5a08a05 26 26 namespace ControlStruct { 27 27 28 class LabelGenerator;29 28 using LabelToStmt = std::map<ast::Label, const ast::Stmt *>; 30 29
Note: See TracChangeset
for help on using the changeset viewer.