Changeset 37b3151
- Timestamp:
- Nov 30, 2023, 3:53:45 PM (13 months ago)
- Branches:
- master
- Children:
- c4570af3
- Parents:
- d787828d
- Location:
- src
- Files:
-
- 2 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 \ -
src/main.cc
rd787828d r37b3151 78 78 #include "Validate/InitializerLength.hpp" // for setLengthFromInitializer 79 79 #include "Validate/LabelAddressFixer.hpp" // for fixLabelAddresses 80 #include "Validate/Link ReferenceToTypes.hpp" // for linkReferenceToTypes80 #include "Validate/LinkInstanceTypes.hpp" // for linkInstanceTypes 81 81 #include "Validate/ReplaceTypedef.hpp" // for replaceTypedef 82 82 #include "Validate/ReturnCheck.hpp" // for checkReturnStatements 83 83 #include "Validate/VerifyCtorDtorAssign.hpp" // for verifyCtorDtorAssign 84 84 #include "Virtual/ExpandCasts.h" // for expandCasts 85 #include "Virtual/VirtualDtor.hpp" 85 #include "Virtual/VirtualDtor.hpp" // for implementVirtDtors 86 86 87 87 using namespace std; … … 318 318 PASS( "Enum and Pointer Decay", Validate::decayEnumsAndPointers, transUnit ); 319 319 320 PASS( "Link Reference To Types", Validate::linkReferenceToTypes, transUnit );320 PASS( "Link Instance Types", Validate::linkInstanceTypes, transUnit ); 321 321 322 322 PASS( "Forall Pointer Decay", Validate::decayForallPointers, transUnit );
Note: See TracChangeset
for help on using the changeset viewer.