Changeset 4dc3b8c for src/Validate
- Timestamp:
- Nov 30, 2023, 6:14:20 PM (22 months ago)
- Branches:
- master
- Children:
- 2f8d351
- Parents:
- 7f2bfb7 (diff), c4570af3 (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. - Location:
- src/Validate
- Files:
-
- 2 edited
- 3 moved
Legend:
- Unmodified
- Added
- Removed
-
src/Validate/FindSpecialDecls.cpp
r7f2bfb7 r4dc3b8c 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // FindSpecialDecls New.cpp -- Find special declarations used in the compiler.7 // FindSpecialDecls.cpp -- Find special declarations used in the compiler. 8 8 // 9 9 // Author : Andrew Beach -
src/Validate/FixReturnTypes.cpp
r7f2bfb7 r4dc3b8c 19 19 #include "AST/Pass.hpp" 20 20 #include "AST/Type.hpp" 21 #include "CodeGen/CodeGenerator New.hpp"21 #include "CodeGen/CodeGenerator.hpp" 22 22 #include "ResolvExpr/Unify.h" 23 24 namespace ast {25 class TranslationUnit;26 }27 23 28 24 namespace Validate { -
src/Validate/LinkInstanceTypes.cpp
r7f2bfb7 r4dc3b8c 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // Link ReferenceToTypes.cpp -- Connect instance types to declarations.7 // LinkInstanceTypes.cpp -- Connect instance types to declarations. 8 8 // 9 9 // Author : Andrew Beach … … 14 14 // 15 15 16 #include "Validate/Link ReferenceToTypes.hpp"16 #include "Validate/LinkInstanceTypes.hpp" 17 17 18 18 #include "AST/Pass.hpp" … … 331 331 } // namespace 332 332 333 void link ReferenceToTypes( ast::TranslationUnit & translationUnit ) {333 void linkInstanceTypes( ast::TranslationUnit & translationUnit ) { 334 334 ast::Pass<LinkTypesCore>::run( translationUnit ); 335 335 } -
src/Validate/LinkInstanceTypes.hpp
r7f2bfb7 r4dc3b8c 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // Link ReferenceToTypes.hpp -- Connect instance types to declarations.7 // LinkInstanceTypes.hpp -- Connect instance types to declarations. 8 8 // 9 9 // Author : Andrew Beach … … 25 25 /// adjustments, such as setting the sized flag. 26 26 /// Because of the sized flag, it must happen before auto-gen. 27 void link ReferenceToTypes( ast::TranslationUnit & translationUnit );27 void linkInstanceTypes( ast::TranslationUnit & translationUnit ); 28 28 29 29 } -
src/Validate/module.mk
r7f2bfb7 r4dc3b8c 27 27 Validate/EnumAndPointerDecay.cpp \ 28 28 Validate/EnumAndPointerDecay.hpp \ 29 Validate/FindSpecialDecls New.cpp \29 Validate/FindSpecialDecls.cpp \ 30 30 Validate/FixQualifiedTypes.cpp \ 31 31 Validate/FixQualifiedTypes.hpp \ … … 44 44 Validate/LabelAddressFixer.cpp \ 45 45 Validate/LabelAddressFixer.hpp \ 46 Validate/Link ReferenceToTypes.cpp \47 Validate/Link ReferenceToTypes.hpp \46 Validate/LinkInstanceTypes.cpp \ 47 Validate/LinkInstanceTypes.hpp \ 48 48 Validate/NoIdSymbolTable.hpp \ 49 49 Validate/ReplaceTypedef.cpp \
Note:
See TracChangeset
for help on using the changeset viewer.