[llvm-commits] CVS: llvm/tools/bugpoint/CodeGeneratorBug.cpp
Chris Lattner
lattner at cs.uiuc.edu
Tue Oct 14 15:57:01 PDT 2003
Changes in directory llvm/tools/bugpoint:
CodeGeneratorBug.cpp updated: 1.18 -> 1.19
---
Log message:
Fix minor formatting bug
---
Diffs of the changes: (+2 -2)
Index: llvm/tools/bugpoint/CodeGeneratorBug.cpp
diff -u llvm/tools/bugpoint/CodeGeneratorBug.cpp:1.18 llvm/tools/bugpoint/CodeGeneratorBug.cpp:1.19
--- llvm/tools/bugpoint/CodeGeneratorBug.cpp:1.18 Thu Aug 28 17:14:16 2003
+++ llvm/tools/bugpoint/CodeGeneratorBug.cpp Tue Oct 14 15:55:56 2003
@@ -257,9 +257,9 @@
<< SafeModuleBC << " -o temporary.c\n"
<< " gcc -xc temporary.c -O2 -o " << SharedObject
#if defined(sparc) || defined(__sparc__) || defined(__sparcv9)
- << "-G" // Compile a shared library, `-G' for Sparc
+ << " -G" // Compile a shared library, `-G' for Sparc
#else
- << "-shared" // `-shared' for Linux/X86, maybe others
+ << " -shared" // `-shared' for Linux/X86, maybe others
#endif
<< "\n";
} else {
More information about the llvm-commits
mailing list