Delete the unused performXXX() functions.

Swift SVN r13531
This commit is contained in:
Nadav Rotem
2014-02-06 00:57:28 +00:00
parent dcc4c17751
commit f8c7b54d28
25 changed files with 11 additions and 412 deletions

View File

@@ -627,10 +627,6 @@ static bool removeUnreachableBlocks(SILFunction &F, SILModule &M,
return true;
}
//===----------------------------------------------------------------------===//
// Top Level Driver
//===----------------------------------------------------------------------===//
void swift::performSILDeadCodeElimination(SILModule *M) {
for (auto &Fn : *M) {
DEBUG(llvm::errs() << "*** Dead Code Elimination processing: "
@@ -687,4 +683,3 @@ class DCE : public SILModuleTrans {
SILTransform *swift::createDCE() {
return new DCE();
}