diff options
author | Chris Lattner <sabre@nondot.org> | 2003-04-23 20:41:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-04-23 20:41:18 +0000 |
commit | 1b35bee37cee4885635493240449b3af072893d7 (patch) | |
tree | 72e82542726b102894961d3e29576cf1f2237c0d | |
parent | b348952d63198b9dcdc108a624b8413d1a04fedd (diff) | |
download | bcm5719-llvm-1b35bee37cee4885635493240449b3af072893d7.tar.gz bcm5719-llvm-1b35bee37cee4885635493240449b3af072893d7.zip |
Print where reference output goes
llvm-svn: 5891
-rw-r--r-- | llvm/tools/bugpoint/Miscompilation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/bugpoint/Miscompilation.cpp b/llvm/tools/bugpoint/Miscompilation.cpp index 3cccffe10c1..500af49a167 100644 --- a/llvm/tools/bugpoint/Miscompilation.cpp +++ b/llvm/tools/bugpoint/Miscompilation.cpp @@ -43,7 +43,7 @@ bool BugDriver::debugMiscompilation() { std::cout << "Generating reference output from raw program..."; Output = executeProgram("bugpoint.reference.out"); CreatedOutput = true; - std::cout << " done!\n"; + std::cout << " done! Reference output is: bugpoint.reference.out.\n"; } else if (diffProgram(Output)) { std::cout << "\n*** Input program does not match reference diff!\n" << " Must be problem with input source!\n"; |