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

@ -768,12 +768,12 @@ void AssemblyWriter::printModule(const Module *M) {
Module::lib_iterator LI = M->lib_begin(); Module::lib_iterator LI = M->lib_begin();
Module::lib_iterator LE = M->lib_end(); Module::lib_iterator LE = M->lib_end();
if (LI != LE) { if (LI != LE) {
Out << "deplibs = [\n"; Out << "deplibs = [ ";
while (LI != LE) { while (LI != LE) {
Out << "\"" << *LI << "\""; Out << "\"" << *LI << "\"";
++LI; ++LI;
if (LI != LE) if (LI != LE)
Out << ",\n"; Out << ", ";
} }
Out << " ]\n"; Out << " ]\n";
} }