From 4d28b73dab5aef7b7c5269041ea1bdb034f3a682 Mon Sep 17 00:00:00 2001
From: Chris Lattner <sabre@nondot.org>
Date: Sun, 17 Aug 2003 22:08:25 +0000
Subject: [PATCH] Fix message

llvm-svn: 7926
---
 tools/bugpoint/CodeGeneratorBug.cpp | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/tools/bugpoint/CodeGeneratorBug.cpp b/tools/bugpoint/CodeGeneratorBug.cpp
index c371f2808f4..dec9caea411 100644
--- a/tools/bugpoint/CodeGeneratorBug.cpp
+++ b/tools/bugpoint/CodeGeneratorBug.cpp
@@ -253,8 +253,9 @@ bool ReduceMisCodegenFunctions::TestFuncs(const std::vector<Function*> &Funcs,
     for (unsigned i=0, e = InputArgv.size(); i != e; ++i)
       std::cout << " " << InputArgv[i];
     std::cout << "\n";
-    std::cout << "The shared object was created with:\ndis -c " << SafeModuleBC 
-              << "-o " << SharedObject << "\n";
+    std::cout << "The shared object was created with:\n  dis -c "
+              << SafeModuleBC << " -o temporary.c\n"
+              << "  gcc -shared temporary.c -o " << SharedObject << "\n";
   } else {
     removeFile(TestModuleBC);
     removeFile(SafeModuleBC);