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

Brian Gaeke gaeke at cs.uiuc.edu
Fri May 23 00:35:01 PDT 2003


Changes in directory llvm/tools/bugpoint:

BugDriver.cpp updated: 1.6 -> 1.7

---
Log message:

Clarify BugDriver.cpp:BugDriver::ParseInputFile()'s return values in its
explanatory comment.


---
Diffs of the changes:

Index: llvm/tools/bugpoint/BugDriver.cpp
diff -u llvm/tools/bugpoint/BugDriver.cpp:1.6 llvm/tools/bugpoint/BugDriver.cpp:1.7
--- llvm/tools/bugpoint/BugDriver.cpp:1.6	Fri May  2 21:16:43 2003
+++ llvm/tools/bugpoint/BugDriver.cpp	Fri May 23 00:34:32 2003
@@ -60,7 +60,9 @@
 }
 
 // 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<std::string> &Filenames) {
   assert(Program == 0 && "Cannot call addSources multiple times!");





More information about the llvm-commits mailing list