summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-04-21 06:12:55 +0000
committerChris Lattner <sabre@nondot.org>2008-04-21 06:12:55 +0000
commitd5fbc8f0afd6929ac0b8bb42334464f566a340f0 (patch)
tree575060652fa3a4f69812896738d10ef9e9f1835a /llvm/lib
parenta89143f1e0f09196d2b092ce58511c8f4c41744e (diff)
downloadbcm5719-llvm-d5fbc8f0afd6929ac0b8bb42334464f566a340f0.tar.gz
bcm5719-llvm-d5fbc8f0afd6929ac0b8bb42334464f566a340f0.zip
another bug introduced in r47802 by nicholas, for no apparent reason.
llvm-svn: 50031
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/VMCore/AsmWriter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/AsmWriter.cpp b/llvm/lib/VMCore/AsmWriter.cpp
index 30682678857..24189f13415 100644
--- a/llvm/lib/VMCore/AsmWriter.cpp
+++ b/llvm/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)
OpenPOWER on IntegriCloud