If bugpoint can't match the reference output, at LEAST provide the output
authorChris Lattner <sabre@nondot.org>
Fri, 20 Feb 2004 06:12:58 +0000 (06:12 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 20 Feb 2004 06:12:58 +0000 (06:12 +0000)
we can get.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11653 91177308-0d34-0410-b5e6-96231b3b80d8

tools/bugpoint/CodeGeneratorBug.cpp

index c8bcd537cf58aab3122547da1d6d84a9d6e6d6d6..5c9cb06e3d7107e105a972851e0558cdfab702fd 100644 (file)
@@ -349,9 +349,13 @@ static void DisambiguateGlobalSymbols(Module *M) {
 
 bool BugDriver::debugCodeGenerator() {
   if ((void*)cbe == (void*)Interpreter) {
-    std::cout << "*** The C backend cannot match the reference diff, but it is "
-              << "used as the 'known good'\n     code generator, so I can't deb"
-              << "ug it.  Perhaps you have a front-end problem?\n";
+    std::string Result = executeProgramWithCBE("bugpoint.cbe.out");
+    std::cout << "\n*** The C backend cannot match the reference diff, but it "
+              << "is used as the 'known good'\n    code generator, so I can't"
+              << " debug it.  Perhaps you have a front-end problem?\n    As a"
+              << " sanity check, I left the result of executing the program "
+              << "with the C backend\n    in this file for you: '"
+              << Result << "'.\n";
     return true;
   }