summaryrefslogtreecommitdiffstats
path: root/tools/bugpoint
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
commit182a21ea7198aa37d971eec05b50d8fedee9220d (patch)
tree87786380fa0b6815459e44a5515bfc3cef63a91d /tools/bugpoint
parenta5a96a9ed9d90014769ffc86ca48c486cf753ad5 (diff)
downloadexternal_llvm-182a21ea7198aa37d971eec05b50d8fedee9220d.zip
external_llvm-182a21ea7198aa37d971eec05b50d8fedee9220d.tar.gz
external_llvm-182a21ea7198aa37d971eec05b50d8fedee9220d.tar.bz2
Fix minor formatting bug
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9116 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint')
-rw-r--r--tools/bugpoint/CodeGeneratorBug.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/bugpoint/CodeGeneratorBug.cpp b/tools/bugpoint/CodeGeneratorBug.cpp
index 19a23ea..6698469 100644
--- a/tools/bugpoint/CodeGeneratorBug.cpp
+++ b/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 {