aboutsummaryrefslogtreecommitdiff
path: root/tools/bugpoint/CodeGeneratorBug.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-08-17 22:08:25 +0000
committerChris Lattner <sabre@nondot.org>2003-08-17 22:08:25 +0000
commite533cefbc091ee21199fd8c884bce8586d8a4f2e (patch)
treea046bf31875e824b7cd22a3baa3d2c5dc329fb41 /tools/bugpoint/CodeGeneratorBug.cpp
parent169db9d775ad44f31c6aa1985e33933ed3740704 (diff)
Fix message
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7926 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/CodeGeneratorBug.cpp')
-rw-r--r--tools/bugpoint/CodeGeneratorBug.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/bugpoint/CodeGeneratorBug.cpp b/tools/bugpoint/CodeGeneratorBug.cpp
index c371f2808f..dec9caea41 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);