Don't print newlines between each library in the deplibs list.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16331 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-09-14 04:51:44 +00:00
parent b228657acc
commit cfe97b78e7

View File

@ -765,15 +765,15 @@ void AssemblyWriter::printModule(const Module *M) {
Out << "target triple = \"" << M->getTargetTriple() << "\"\n";
// Loop over the dependent libraries and emit them
Module::lib_iterator LI= M->lib_begin();
Module::lib_iterator LE= M->lib_end();
Module::lib_iterator LI = M->lib_begin();
Module::lib_iterator LE = M->lib_end();
if (LI != LE) {
Out << "deplibs = [\n";
while ( LI != LE ) {
Out << "deplibs = [ ";
while (LI != LE) {
Out << "\"" << *LI << "\"";
++LI;
if ( LI != LE )
Out << ",\n";
if (LI != LE)
Out << ", ";
}
Out << " ]\n";
}