[llvm-commits] CVS: llvm/tools/bugpoint/CodeGeneratorBug.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sun Aug 17 17:09:00 PDT 2003
Changes in directory llvm/tools/bugpoint:
CodeGeneratorBug.cpp updated: 1.14 -> 1.15
---
Log message:
Fix message
---
Diffs of the changes:
Index: llvm/tools/bugpoint/CodeGeneratorBug.cpp
diff -u llvm/tools/bugpoint/CodeGeneratorBug.cpp:1.14 llvm/tools/bugpoint/CodeGeneratorBug.cpp:1.15
--- llvm/tools/bugpoint/CodeGeneratorBug.cpp:1.14 Thu Aug 7 16:42:28 2003
+++ llvm/tools/bugpoint/CodeGeneratorBug.cpp Sun Aug 17 17:08:25 2003
@@ -253,8 +253,9 @@
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);
More information about the llvm-commits
mailing list