Remove dead code in SIL linker

... which is not only dead but also broken.
NFC
This commit is contained in:
Erik Eckstein
2016-11-02 10:30:10 -07:00
parent e8374fa6cb
commit a01e9d4e41
6 changed files with 0 additions and 58 deletions

View File

@@ -486,10 +486,6 @@ bool SILModule::linkFunction(SILFunction *Fun, SILModule::LinkingMode Mode) {
return SILLinkerVisitor(*this, getSILLoader(), Mode).processFunction(Fun);
}
bool SILModule::linkFunction(SILDeclRef Decl, SILModule::LinkingMode Mode) {
return SILLinkerVisitor(*this, getSILLoader(), Mode).processDeclRef(Decl);
}
bool SILModule::linkFunction(StringRef Name, SILModule::LinkingMode Mode) {
return SILLinkerVisitor(*this, getSILLoader(), Mode).processFunction(Name);
}