another bug introduced in r47802 by nicholas, for no apparent reason.
authorChris Lattner <sabre@nondot.org>
Mon, 21 Apr 2008 06:12:55 +0000 (06:12 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 21 Apr 2008 06:12:55 +0000 (06:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50031 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/AsmWriter.cpp

index 30682678857c4a04de0cfa2a44714d0b348f6287..24189f13415d54058a21353d49ac4595290e0c40 100644 (file)
@@ -1131,7 +1131,7 @@ void AssemblyWriter::printFunction(const Function *F) {
   if (F->isDeclaration()) {
     Out << "\n";
   } else {
-    Out << " {\n";
+    Out << " {";
 
     // Output all of its basic blocks... for the function
     for (Function::const_iterator I = F->begin(), E = F->end(); I != E; ++I)