From b44dd765136438d96706a060b2c182fb04d3cf2f Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 14 Oct 2003 20:55:56 +0000 Subject: [PATCH] Fix minor formatting bug llvm-svn: 9116 --- tools/bugpoint/CodeGeneratorBug.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/bugpoint/CodeGeneratorBug.cpp b/tools/bugpoint/CodeGeneratorBug.cpp index 19a23ea0077..66984694e38 100644 --- a/tools/bugpoint/CodeGeneratorBug.cpp +++ b/tools/bugpoint/CodeGeneratorBug.cpp @@ -257,9 +257,9 @@ bool ReduceMisCodegenFunctions::TestFuncs(const std::vector &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 {