Changeset 37b3151 for src/Validate
- Timestamp:
- Nov 30, 2023, 3:53:45 PM (14 months ago)
- Branches:
- master
- Children:
- c4570af3
- Parents:
- d787828d
- Location:
- src/Validate
- Files:
-
- 1 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
src/Validate/LinkInstanceTypes.cpp
rd787828d r37b3151 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
rd787828d r37b3151 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
rd787828d r37b3151 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.