diff options
author | Chris Lattner <sabre@nondot.org> | 2008-04-21 06:12:55 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-04-21 06:12:55 +0000 |
commit | a1b5858fda38cfe5b30055a87020b6d5f7023238 (patch) | |
tree | bdc26dd16af8b4ec036d6bc99ee2c127b87630bd /lib | |
parent | 7d717a0b7065aac1be396d79423b4cecf868a95d (diff) |
another bug introduced in r47802 by nicholas, for no apparent reason.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50031 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/VMCore/AsmWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/AsmWriter.cpp b/lib/VMCore/AsmWriter.cpp index 3068267885..24189f1341 100644 --- a/lib/VMCore/AsmWriter.cpp +++ b/lib/VMCore/AsmWriter.cpp @@ -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) |