Changeset d787828d
- Timestamp:
- Nov 30, 2023, 2:58:26 PM (13 months ago)
- Branches:
- master
- Children:
- 37b3151
- Parents:
- 4a89b52
- Location:
- src/GenPoly
- Files:
-
- 4 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/Box.cpp
r4a89b52 rd787828d 32 32 #include "GenPoly/Lvalue.h" // for generalizedLvalue 33 33 #include "GenPoly/ScopedSet.h" // for ScopedSet 34 #include "GenPoly/ScrubTy Vars.h"// for scrubTypeVars, scrubAllTypeVars34 #include "GenPoly/ScrubTypeVars.hpp" // for scrubTypeVars, scrubAllTypeVars 35 35 #include "ResolvExpr/Unify.h" // for typesCompatible 36 36 #include "SymTab/Mangler.h" // for mangle, mangleType -
src/GenPoly/FindFunction.cc
r4a89b52 rd787828d 22 22 #include "GenPoly/ErasableScopedMap.h" // for ErasableScopedMap<>::iterator 23 23 #include "GenPoly/GenPoly.h" // for TyVarMap 24 #include "ScrubTy Vars.h" // for ScrubTyVars24 #include "ScrubTypeVars.hpp" // for scrubTypeVars 25 25 26 26 namespace GenPoly { -
src/GenPoly/InstantiateGeneric.cpp
r4a89b52 rd787828d 31 31 #include "Common/UniqueName.h" // for UniqueName 32 32 #include "GenPoly/GenPoly.h" // for isPolyType, typesPolyCompatible 33 #include "GenPoly/ScrubTy Vars.h" // for scrubAll33 #include "GenPoly/ScrubTypeVars.hpp" // for scrubAllTypeVars 34 34 #include "ResolvExpr/AdjustExprType.hpp" // for adjustExprType 35 35 #include "ResolvExpr/Unify.h" // for typesCompatible -
src/GenPoly/ScrubTypeVars.cpp
r4a89b52 rd787828d 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // ScrubTy Vars.cc-- Remove polymorphic types.7 // ScrubTypeVars.cpp -- Remove polymorphic types. 8 8 // 9 9 // Author : Richard C. Bilson … … 14 14 // 15 15 16 #include "ScrubTypeVars.hpp" 17 16 18 #include <utility> // for pair 17 19 … … 19 21 #include "GenPoly.h" // for mangleType, TyVarMap, alignof... 20 22 #include "GenPoly/ErasableScopedMap.h" // for ErasableScopedMap<>::const_it... 21 #include "ScrubTyVars.h"22 23 #include "SymTab/Mangler.h" // for mangleType 23 24 -
src/GenPoly/ScrubTypeVars.hpp
r4a89b52 rd787828d 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // ScrubTy Vars.h-- Remove polymorphic types.7 // ScrubTypeVars.hpp -- Remove polymorphic types. 8 8 // 9 9 // Author : Richard C. Bilson -
src/GenPoly/module.mk
r4a89b52 rd787828d 31 31 GenPoly/Lvalue.cpp \ 32 32 GenPoly/ScopedSet.h \ 33 GenPoly/ScrubTy Vars.cc\34 GenPoly/ScrubTy Vars.h\33 GenPoly/ScrubTypeVars.cpp \ 34 GenPoly/ScrubTypeVars.hpp \ 35 35 GenPoly/Specialize.cpp \ 36 36 GenPoly/Specialize.h
Note: See TracChangeset
for help on using the changeset viewer.