[llvm-commits] CVS: llvm/tools/bugpoint/ExecutionDriver.cpp
Chris Lattner
lattner at cs.uiuc.edu
Fri May 2 22:21:01 PDT 2003
Changes in directory llvm/tools/bugpoint:
ExecutionDriver.cpp updated: 1.5 -> 1.6
---
Log message:
Make a comment more accurate
---
Diffs of the changes:
Index: llvm/tools/bugpoint/ExecutionDriver.cpp
diff -u llvm/tools/bugpoint/ExecutionDriver.cpp:1.5 llvm/tools/bugpoint/ExecutionDriver.cpp:1.6
--- llvm/tools/bugpoint/ExecutionDriver.cpp:1.5 Fri May 2 22:19:41 2003
+++ llvm/tools/bugpoint/ExecutionDriver.cpp Fri May 2 22:20:36 2003
@@ -219,7 +219,7 @@
RunProgramWithTimeout(GCCPath, GCCArgs, "/dev/null", ErrorFilename.c_str(),
ErrorFilename.c_str());
- // Read the error message into a string.
+ // Print out the error messages generated by GCC if possible...
std::ifstream ErrorFile(ErrorFilename.c_str());
if (ErrorFile) {
std::copy(std::istreambuf_iterator<char>(ErrorFile),
More information about the llvm-commits
mailing list