From: Brian Gaeke Date: Fri, 23 May 2003 05:34:32 +0000 (+0000) Subject: Clarify BugDriver.cpp:BugDriver::ParseInputFile()'s return values in its X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=dae7f92366311de2bfaff91f6e66ef3da2f2fcbc;p=oota-llvm.git Clarify BugDriver.cpp:BugDriver::ParseInputFile()'s return values in its explanatory comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6308 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/bugpoint/BugDriver.cpp b/tools/bugpoint/BugDriver.cpp index 56eb7504926..ed1a1351255 100644 --- a/tools/bugpoint/BugDriver.cpp +++ b/tools/bugpoint/BugDriver.cpp @@ -60,7 +60,9 @@ Module *BugDriver::ParseInputFile(const std::string &InputFilename) const { } // This method takes the specified list of LLVM input files, attempts to load -// them, either as assembly or bytecode, then link them together. +// them, either as assembly or bytecode, then link them together. It returns +// true on failure (if, for example, an input bytecode file could not be +// parsed), and false on success. // bool BugDriver::addSources(const std::vector &Filenames) { assert(Program == 0 && "Cannot call addSources multiple times!");