[llvm-commits] CVS: llvm/tools/bugpoint/BugDriver.h

Chris Lattner lattner at cs.uiuc.edu
Thu Apr 24 17:54:00 PDT 2003


Changes in directory llvm/tools/bugpoint:

BugDriver.h updated: 1.6 -> 1.7

---
Log message:

Remove dead functions


---
Diffs of the changes:

Index: llvm/tools/bugpoint/BugDriver.h
diff -u llvm/tools/bugpoint/BugDriver.h:1.6 llvm/tools/bugpoint/BugDriver.h:1.7
--- llvm/tools/bugpoint/BugDriver.h:1.6	Thu Apr 24 17:24:58 2003
+++ llvm/tools/bugpoint/BugDriver.h	Thu Apr 24 17:53:24 2003
@@ -110,19 +110,6 @@
     return runPasses(PassesToRun, Filename, DeleteOutput);
   }
 
-  /// runPass - Run only the specified pass on the program.
-  ///
-  bool runPass(const PassInfo *P, bool DeleteOutput = true) const {
-    return runPasses(std::vector<const PassInfo*>(1, P), DeleteOutput);
-  }
-  
-  /// extractFunctionFromModule - This method is used to extract the specified
-  /// (non-external) function from the current program, slim down the module,
-  /// and then return it.  This does not modify Program at all, it modifies a
-  /// copy, which it returns.
-  ///
-  Module *extractFunctionFromModule(Function *F) const;
-
   /// deleteInstructionFromProgram - This method clones the current Program and
   /// deletes the specified instruction from the cloned module.  It then runs a
   /// series of cleanup passes (ADCE and SimplifyCFG) to eliminate any code





More information about the llvm-commits mailing list