1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Fix minor formatting bug

llvm-svn: 9116
This commit is contained in:
Chris Lattner 2003-10-14 20:55:56 +00:00
parent 32f66afbad
commit b44dd76513

View File

@ -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 {