Changeset 83fd57d for src/ControlStruct
- Timestamp:
- Nov 30, 2023, 2:04:16 PM (22 months ago)
- Branches:
- master
- Children:
- 4a89b52
- Parents:
- 6009a5a
- Location:
- src/ControlStruct
- Files:
-
- 2 edited
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
src/ControlStruct/ExceptDecl.cpp
r6009a5a r83fd57d 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // ExceptDecl New.cpp --7 // ExceptDecl.cpp -- 8 8 // 9 9 // Author : Andrew Beach -
src/ControlStruct/ExceptTranslate.cpp
r6009a5a r83fd57d 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // ExceptTranslate New.cpp -- Conversion of exception control flow structures.7 // ExceptTranslate.cpp -- Conversion of exception control flow structures. 8 8 // 9 9 // Author : Andrew Beach -
src/ControlStruct/LabelGenerator.cpp
r6009a5a r83fd57d 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // LabelGenerator New.cpp --7 // LabelGenerator.cpp -- 8 8 // 9 9 // Author : Peter A. Buhr … … 14 14 // 15 15 16 #include "LabelGenerator New.hpp"16 #include "LabelGenerator.hpp" 17 17 18 18 #include "AST/Attribute.hpp" -
src/ControlStruct/LabelGenerator.hpp
r6009a5a r83fd57d 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // LabelGenerator.h --7 // LabelGenerator.hpp -- 8 8 // 9 9 // Author : Rodolfo G. Esteves … … 26 26 27 27 namespace ControlStruct { 28 ast::Label newLabel( const std::string &, const ast::Stmt * ); 29 ast::Label newLabel( const std::string &, const CodeLocation & ); 28 29 ast::Label newLabel( const std::string &, const ast::Stmt * ); 30 ast::Label newLabel( const std::string &, const CodeLocation & ); 31 30 32 } // namespace ControlStruct 31 33 -
src/ControlStruct/MultiLevelExit.cpp
r6009a5a r83fd57d 16 16 #include "MultiLevelExit.hpp" 17 17 18 #include <set> 19 18 20 #include "AST/Pass.hpp" 19 21 #include "AST/Stmt.hpp" 20 #include "LabelGeneratorNew.hpp" 21 22 #include <set> 22 #include "LabelGenerator.hpp" 23 23 24 using namespace std; 24 25 using namespace ast; -
src/ControlStruct/module.mk
r6009a5a r83fd57d 16 16 17 17 SRC += \ 18 ControlStruct/ExceptDecl New.cpp \18 ControlStruct/ExceptDecl.cpp \ 19 19 ControlStruct/ExceptDecl.h \ 20 ControlStruct/ExceptTranslate New.cpp \20 ControlStruct/ExceptTranslate.cpp \ 21 21 ControlStruct/ExceptTranslate.h \ 22 22 ControlStruct/FixLabels.cpp \ … … 24 24 ControlStruct/HoistControlDecls.cpp \ 25 25 ControlStruct/HoistControlDecls.hpp \ 26 ControlStruct/LabelGenerator New.cpp \27 ControlStruct/LabelGenerator New.hpp \26 ControlStruct/LabelGenerator.cpp \ 27 ControlStruct/LabelGenerator.hpp \ 28 28 ControlStruct/MultiLevelExit.cpp \ 29 29 ControlStruct/MultiLevelExit.hpp
Note:
See TracChangeset
for help on using the changeset viewer.