Eliminate yet more SubstitutionLists from SIL in search of a steady-state

This commit is contained in:
Doug Gregor
2018-05-07 16:21:20 -07:00
parent 38a189f650
commit 09446defef
16 changed files with 72 additions and 95 deletions

View File

@@ -1083,7 +1083,7 @@ public:
template <class Inst>
void visitApplyInstBase(Inst *AI) {
*this << Ctx.getID(AI->getCallee());
printSubstitutions(AI->getSubstitutions());
printSubstitutions(AI->getSubstitutionMap());
*this << '(';
interleave(AI->getArguments(),
[&](const SILValue &arg) { *this << Ctx.getID(arg); },