Skip to content

Commit 99f49e4

Browse files
committed
remove out-of-date changes
1 parent 4b284da commit 99f49e4

File tree

2 files changed

+2
-38
lines changed

2 files changed

+2
-38
lines changed

source/slang/ir.cpp

+2-4
Original file line numberDiff line numberDiff line change
@@ -3690,12 +3690,12 @@ namespace Slang
36903690
cloneFunctionCommon(context, clonedFunc, originalFunc);
36913691

36923692
// for now, clone all unreferenced witness tables
3693-
for (auto gv = context->getOriginalModule()->getFirstGlobalValue();
3693+
/*for (auto gv = context->getOriginalModule()->getFirstGlobalValue();
36943694
gv; gv = gv->getNextValue())
36953695
{
36963696
if (gv->op == kIROp_witness_table)
36973697
cloneGlobalValue(context, (IRWitnessTable*)gv);
3698-
}
3698+
}*/
36993699

37003700
// We need to attach the layout information for
37013701
// the entry point to this declaration, so that
@@ -4746,9 +4746,7 @@ namespace Slang
47464746
//
47474747
// We will first find or construct a specialized version
47484748
// of the callee funciton/
4749-
auto originalFunc = dumpIRFunc(genericFunc);
47504749
auto specFunc = getSpecializedFunc(sharedContext, genericFunc, specDeclRef);
4751-
auto specFuncStr = dumpIRFunc(specFunc);
47524750
//
47534751
// Then we will replace the use sites for the `specialize`
47544752
// instruction with uses of the specialized function.

source/slang/syntax.cpp

-34
Original file line numberDiff line numberDiff line change
@@ -1949,39 +1949,5 @@ void Type::accept(IValVisitor* visitor, void* extra)
19491949
rs = combineHash(rs, globalGenParamSubstitutions->GetHashCode());
19501950
return rs;
19511951
}
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-
}
19861952
}
19871953

0 commit comments

Comments
 (0)