[llvm-commits] CVS: llvm/tools/bugpoint/BugDriver.h
Chris Lattner
lattner at cs.uiuc.edu
Mon Apr 5 17:02:01 PDT 2004
Changes in directory llvm/tools/bugpoint:
BugDriver.h updated: 1.35 -> 1.36
---
Log message:
Make a method public
---
Diffs of the changes: (+2 -1)
Index: llvm/tools/bugpoint/BugDriver.h
diff -u llvm/tools/bugpoint/BugDriver.h:1.35 llvm/tools/bugpoint/BugDriver.h:1.36
--- llvm/tools/bugpoint/BugDriver.h:1.35 Sun Mar 14 15:21:57 2004
+++ llvm/tools/bugpoint/BugDriver.h Mon Apr 5 17:01:48 2004
@@ -209,12 +209,13 @@
bool runPasses(const std::vector<const PassInfo*> &PassesToRun,
std::string &OutputFilename, bool DeleteOutput = false,
bool Quiet = false) const;
-private:
+
/// writeProgramToFile - This writes the current "Program" to the named
/// bytecode file. If an error occurs, true is returned.
///
bool writeProgramToFile(const std::string &Filename, Module *M = 0) const;
+private:
/// runPasses - Just like the method above, but this just returns true or
/// false indicating whether or not the optimizer crashed on the specified
/// input (true = crashed).
More information about the llvm-commits
mailing list