Changeset d787828d for src


Ignore:
Timestamp:
Nov 30, 2023, 2:58:26 PM (9 months ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
master
Children:
37b3151
Parents:
4a89b52
Message:

Rename the ScrubTyVars? moduel to ScrubTypeVars?. This makes it more consistent with the data types and function names now used.

Location:
src/GenPoly
Files:
4 edited
2 moved

Legend:

Unmodified
Added
Removed
  • src/GenPoly/Box.cpp

    r4a89b52 rd787828d  
    3232#include "GenPoly/Lvalue.h"            // for generalizedLvalue
    3333#include "GenPoly/ScopedSet.h"         // for ScopedSet
    34 #include "GenPoly/ScrubTyVars.h"       // for scrubTypeVars, scrubAllTypeVars
     34#include "GenPoly/ScrubTypeVars.hpp"   // for scrubTypeVars, scrubAllTypeVars
    3535#include "ResolvExpr/Unify.h"          // for typesCompatible
    3636#include "SymTab/Mangler.h"            // for mangle, mangleType
  • src/GenPoly/FindFunction.cc

    r4a89b52 rd787828d  
    2222#include "GenPoly/ErasableScopedMap.h"  // for ErasableScopedMap<>::iterator
    2323#include "GenPoly/GenPoly.h"            // for TyVarMap
    24 #include "ScrubTyVars.h"                // for ScrubTyVars
     24#include "ScrubTypeVars.hpp"            // for scrubTypeVars
    2525
    2626namespace GenPoly {
  • src/GenPoly/InstantiateGeneric.cpp

    r4a89b52 rd787828d  
    3131#include "Common/UniqueName.h"         // for UniqueName
    3232#include "GenPoly/GenPoly.h"           // for isPolyType, typesPolyCompatible
    33 #include "GenPoly/ScrubTyVars.h"       // for scrubAll
     33#include "GenPoly/ScrubTypeVars.hpp"   // for scrubAllTypeVars
    3434#include "ResolvExpr/AdjustExprType.hpp"  // for adjustExprType
    3535#include "ResolvExpr/Unify.h"          // for typesCompatible
  • src/GenPoly/ScrubTypeVars.cpp

    r4a89b52 rd787828d  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // ScrubTyVars.cc -- Remove polymorphic types.
     7// ScrubTypeVars.cpp -- Remove polymorphic types.
    88//
    99// Author           : Richard C. Bilson
     
    1414//
    1515
     16#include "ScrubTypeVars.hpp"
     17
    1618#include <utility>                      // for pair
    1719
     
    1921#include "GenPoly.h"                    // for mangleType, TyVarMap, alignof...
    2022#include "GenPoly/ErasableScopedMap.h"  // for ErasableScopedMap<>::const_it...
    21 #include "ScrubTyVars.h"
    2223#include "SymTab/Mangler.h"             // for mangleType
    2324
  • src/GenPoly/ScrubTypeVars.hpp

    r4a89b52 rd787828d  
    55// file "LICENCE" distributed with Cforall.
    66//
    7 // ScrubTyVars.h -- Remove polymorphic types.
     7// ScrubTypeVars.hpp -- Remove polymorphic types.
    88//
    99// Author           : Richard C. Bilson
  • src/GenPoly/module.mk

    r4a89b52 rd787828d  
    3131        GenPoly/Lvalue.cpp \
    3232        GenPoly/ScopedSet.h \
    33         GenPoly/ScrubTyVars.cc \
    34         GenPoly/ScrubTyVars.h \
     33        GenPoly/ScrubTypeVars.cpp \
     34        GenPoly/ScrubTypeVars.hpp \
    3535        GenPoly/Specialize.cpp \
    3636        GenPoly/Specialize.h
Note: See TracChangeset for help on using the changeset viewer.