Print filename correctly

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6119 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-05-12 14:32:04 +00:00
parent 19669f37b0
commit 3cbacc9047

View File

@ -298,7 +298,7 @@ bool BugDriver::debugMiscompilation() {
std::cout << "Generating reference output from raw program...";
Output = executeProgram("bugpoint.reference.out");
CreatedOutput = true;
std::cout << " done! Reference output is: bugpoint.reference.out.\n";
std::cout << " done! Reference output is: " << Output << "\n";
} else if (diffProgram(Output)) {
std::cout << "\n*** Input program does not match reference diff!\n"
<< " Must be problem with input source!\n";