From: Reid Spencer Date: Fri, 15 Dec 2006 21:46:37 +0000 (+0000) Subject: Remove an extraneous { at the end of a block. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=c6d416ada171ba08dafa3a5c9ea79e7e930d4821;p=oota-llvm.git Remove an extraneous { at the end of a block. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32613 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Bytecode/Reader/Analyzer.cpp b/lib/Bytecode/Reader/Analyzer.cpp index 3d6a001080e..078360249c6 100644 --- a/lib/Bytecode/Reader/Analyzer.cpp +++ b/lib/Bytecode/Reader/Analyzer.cpp @@ -387,7 +387,7 @@ public: virtual void handleBasicBlockEnd(unsigned blocknum) { if (os) - *os << " } END BLOCK: BasicBlock #" << blocknum << "{\n"; + *os << " } END BLOCK: BasicBlock #" << blocknum << "\n"; } virtual void handleGlobalConstantsBegin() {