aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-05-12 14:32:04 +0000
committerChris Lattner <sabre@nondot.org>2003-05-12 14:32:04 +0000
commit3cbacc90475509a842edb91cc56fe73a5bb5ed00 (patch)
tree6633ca8e8b23df9ca33c3cd83535710afa0307eb /tools
parent19669f37b0add2bf4e712be262e33bdb45eed2e9 (diff)
downloadexternal_llvm-3cbacc90475509a842edb91cc56fe73a5bb5ed00.zip
external_llvm-3cbacc90475509a842edb91cc56fe73a5bb5ed00.tar.gz
external_llvm-3cbacc90475509a842edb91cc56fe73a5bb5ed00.tar.bz2
Print filename correctly
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6119 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/bugpoint/Miscompilation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bugpoint/Miscompilation.cpp b/tools/bugpoint/Miscompilation.cpp
index 01d46aa..3d96a7c 100644
--- a/tools/bugpoint/Miscompilation.cpp
+++ b/tools/bugpoint/Miscompilation.cpp
@@ -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";