Changeset c778ef1
- Timestamp:
- May 11, 2024, 1:11:40 PM (6 months ago)
- Branches:
- master
- Children:
- 5f225f5
- Parents:
- 0f612d2
- Location:
- src
- Files:
-
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/module.mk
r0f612d2 rc778ef1 24 24 25 25 SRC += $(SRC_CODEGEN) \ 26 CodeGen/Generate.cpp \27 CodeGen/Generate.hpp \28 26 CodeGen/FixMain.cpp \ 29 27 CodeGen/FixMain.hpp \ 30 28 CodeGen/FixNames.cpp \ 31 29 CodeGen/FixNames.hpp \ 30 CodeGen/Generate.cpp \ 31 CodeGen/Generate.hpp \ 32 32 CodeGen/LinkOnce.cpp \ 33 33 CodeGen/LinkOnce.hpp \ -
src/ControlStruct/module.mk
r0f612d2 rc778ef1 17 17 SRC += \ 18 18 ControlStruct/ExceptDecl.cpp \ 19 ControlStruct/ExceptDecl.h \19 ControlStruct/ExceptDecl.hpp \ 20 20 ControlStruct/ExceptTranslate.cpp \ 21 ControlStruct/ExceptTranslate.h \21 ControlStruct/ExceptTranslate.hpp \ 22 22 ControlStruct/FixLabels.cpp \ 23 23 ControlStruct/FixLabels.hpp \ -
src/Validate/module.mk
r0f612d2 rc778ef1 16 16 17 17 SRC_VALIDATE = \ 18 Validate/FindSpecialDecls.h 18 Validate/FindSpecialDecls.hpp 19 19 20 20 SRC += $(SRC_VALIDATE) \ … … 40 40 Validate/HoistTypeDecls.cpp \ 41 41 Validate/HoistTypeDecls.hpp \ 42 Validate/ImplementEnumFunc.cpp \ 43 Validate/ImplementEnumFunc.hpp \ 42 44 Validate/InitializerLength.cpp \ 43 45 Validate/InitializerLength.hpp \ … … 52 54 Validate/ReturnCheck.hpp \ 53 55 Validate/VerifyCtorDtorAssign.cpp \ 54 Validate/VerifyCtorDtorAssign.hpp \ 55 Validate/ImplementEnumFunc.cpp \ 56 Validate/ImplementEnumFunc.hpp 56 Validate/VerifyCtorDtorAssign.hpp 57 57 58 58 SRCDEMANGLE += $(SRC_VALIDATE) -
src/main.cpp
r0f612d2 rc778ef1 66 66 #include "Tuples/Tuples.hpp" // for expandMemberTuples, expan... 67 67 #include "Validate/Autogen.hpp" // for autogenerateRoutines 68 #include "Validate/ImplementEnumFunc.hpp" // for implementEnumFunc69 68 #include "Validate/CompoundLiteral.hpp" // for handleCompoundLiterals 70 69 #include "Validate/EliminateTypedef.hpp" // for eliminateTypedef … … 77 76 #include "Validate/HoistStruct.hpp" // for hoistStruct 78 77 #include "Validate/HoistTypeDecls.hpp" // for hoistTypeDecls 78 #include "Validate/ImplementEnumFunc.hpp" // for implementEnumFunc 79 79 #include "Validate/InitializerLength.hpp" // for setLengthFromInitializer 80 80 #include "Validate/LabelAddressFixer.hpp" // for fixLabelAddresses
Note: See TracChangeset
for help on using the changeset viewer.