From 0442a87f472594062d8819e0f16c4365fd2d7377 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 5 Apr 2004 22:01:48 +0000 Subject: [PATCH] Make a method public llvm-svn: 12677 --- tools/bugpoint/BugDriver.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/bugpoint/BugDriver.h b/tools/bugpoint/BugDriver.h index f5ef51763e3..d54ec576774 100644 --- a/tools/bugpoint/BugDriver.h +++ b/tools/bugpoint/BugDriver.h @@ -209,12 +209,13 @@ public: bool runPasses(const std::vector &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).