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 | eea21dd91c5d79b406a2a73d9c4769e272a34aab (patch) | |
tree | 9eb5c808625087caab9565de5b978ebaac5a50ff | |
parent | 2be50797a1391278489fa698aa8e17d3f8b04a59 (diff) |
Print where reference output goes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5891 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/bugpoint/Miscompilation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bugpoint/Miscompilation.cpp b/tools/bugpoint/Miscompilation.cpp index 3cccffe10c..500af49a16 100644 --- a/tools/bugpoint/Miscompilation.cpp +++ b/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"; |