Revert "[deserialization] Deserialize WitnessTables/VTables in SILModule, not in SILLinking."

This reverts commit r14623. I will recommit this when I reenable deserialization
of witness tables/vtables. This will enable the deserialization of SILFunctions
by default from the stdlib by avoiding the lack of external witness
tables/vtables.

Swift SVN r14786
This commit is contained in:
Michael Gottesman
2014-03-07 19:27:01 +00:00
parent 01c963dc6a
commit ba6ac196f6
3 changed files with 10 additions and 15 deletions

View File

@@ -137,4 +137,9 @@ void swift::performSILLinking(SILModule *M, bool LinkAll) {
}
}
}
if (LinkAll) {
SILLoader->getAllVTables();
SILLoader->getAllWitnessTables();
}
}