From f479be58f5d956e29c315446d7daa9181fba3193 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 3 May 2003 03:20:36 +0000 Subject: [PATCH] Make a comment more accurate git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5991 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/bugpoint/ExecutionDriver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bugpoint/ExecutionDriver.cpp b/tools/bugpoint/ExecutionDriver.cpp index 452259c324e..014ffa2d606 100644 --- a/tools/bugpoint/ExecutionDriver.cpp +++ b/tools/bugpoint/ExecutionDriver.cpp @@ -219,7 +219,7 @@ int CBE::ExecuteProgram(const std::string &Bytecode, 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(ErrorFile), -- 2.34.1