summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-10-14 20:55:56 +0000
committerChris Lattner <sabre@nondot.org>2003-10-14 20:55:56 +0000
commit67cc196bf75c75ce400506b2fa3655a5191966cf (patch)
tree4131bed51a0b92b48bab1d8bac853f054489da56 /llvm
parent2ed0642a955ac35202e58affb7d29e08f1195f85 (diff)
downloadbcm5719-llvm-67cc196bf75c75ce400506b2fa3655a5191966cf.tar.gz
bcm5719-llvm-67cc196bf75c75ce400506b2fa3655a5191966cf.zip
Fix minor formatting bug
llvm-svn: 9116
Diffstat (limited to 'llvm')
-rw-r--r--llvm/tools/bugpoint/CodeGeneratorBug.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/bugpoint/CodeGeneratorBug.cpp b/llvm/tools/bugpoint/CodeGeneratorBug.cpp
index 19a23ea0077..66984694e38 100644
--- a/llvm/tools/bugpoint/CodeGeneratorBug.cpp
+++ b/llvm/tools/bugpoint/CodeGeneratorBug.cpp
@@ -257,9 +257,9 @@ bool ReduceMisCodegenFunctions::TestFuncs(const std::vector<Function*> &Funcs,
<< 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 {
OpenPOWER on IntegriCloud