File tree 2 files changed +2
-38
lines changed
2 files changed +2
-38
lines changed Original file line number Diff line number Diff line change @@ -3690,12 +3690,12 @@ namespace Slang
3690
3690
cloneFunctionCommon (context, clonedFunc, originalFunc);
3691
3691
3692
3692
// for now, clone all unreferenced witness tables
3693
- for (auto gv = context->getOriginalModule ()->getFirstGlobalValue ();
3693
+ /* for (auto gv = context->getOriginalModule()->getFirstGlobalValue();
3694
3694
gv; gv = gv->getNextValue())
3695
3695
{
3696
3696
if (gv->op == kIROp_witness_table)
3697
3697
cloneGlobalValue(context, (IRWitnessTable*)gv);
3698
- }
3698
+ }*/
3699
3699
3700
3700
// We need to attach the layout information for
3701
3701
// the entry point to this declaration, so that
@@ -4746,9 +4746,7 @@ namespace Slang
4746
4746
//
4747
4747
// We will first find or construct a specialized version
4748
4748
// of the callee funciton/
4749
- auto originalFunc = dumpIRFunc (genericFunc);
4750
4749
auto specFunc = getSpecializedFunc (sharedContext, genericFunc, specDeclRef);
4751
- auto specFuncStr = dumpIRFunc (specFunc);
4752
4750
//
4753
4751
// Then we will replace the use sites for the `specialize`
4754
4752
// instruction with uses of the specialized function.
Original file line number Diff line number Diff line change @@ -1949,39 +1949,5 @@ void Type::accept(IValVisitor* visitor, void* extra)
1949
1949
rs = combineHash (rs, globalGenParamSubstitutions->GetHashCode ());
1950
1950
return rs;
1951
1951
}
1952
-
1953
- RefPtr<Substitutions> cloneSubstitutionNonRecursive (RefPtr<Substitutions> subst)
1954
- {
1955
- if (!subst)
1956
- return nullptr ;
1957
- if (auto genSubst = dynamic_cast <GenericSubstitution*>(subst.Ptr ()))
1958
- {
1959
- RefPtr<GenericSubstitution> newSubst = new GenericSubstitution ();
1960
- newSubst->genericDecl = genSubst->genericDecl ;
1961
-
1962
- for (auto arg : genSubst->args )
1963
- {
1964
- newSubst->args .Add (arg);
1965
- }
1966
- return newSubst;
1967
- }
1968
- else if (auto thisSubst = dynamic_cast <ThisTypeSubstitution*>(subst.Ptr ()))
1969
- {
1970
- RefPtr<ThisTypeSubstitution> newSubst = new ThisTypeSubstitution ();
1971
- newSubst->sourceType = thisSubst->sourceType ;
1972
- return newSubst;
1973
- }
1974
- else if (auto genTypeSubst = dynamic_cast <GlobalGenericParamSubstitution*>(subst.Ptr ()))
1975
- {
1976
- RefPtr<GlobalGenericParamSubstitution> newSubst = new GlobalGenericParamSubstitution ();
1977
- newSubst->actualType = genTypeSubst->actualType ;
1978
- newSubst->paramDecl = genTypeSubst->paramDecl ;
1979
- newSubst->witnessTables = genTypeSubst->witnessTables ;
1980
- return newSubst;
1981
- }
1982
- else
1983
- SLANG_UNREACHABLE (" unimplemented cloneSubstitution" );
1984
- UNREACHABLE_RETURN (nullptr );
1985
- }
1986
1952
}
1987
1953
You can’t perform that action at this time.
0 commit comments