Make a method public
authorChris Lattner <sabre@nondot.org>
Mon, 5 Apr 2004 22:01:48 +0000 (22:01 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 5 Apr 2004 22:01:48 +0000 (22:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12677 91177308-0d34-0410-b5e6-96231b3b80d8

tools/bugpoint/BugDriver.h

index f5ef51763e3e72120e22cd6262f22ca84ea7316b..d54ec57677433026ee921b782d85f1571d349d5f 100644 (file)
@@ -209,12 +209,13 @@ public:
   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).