Remove an extraneous { at the end of a block.
authorReid Spencer <rspencer@reidspencer.com>
Fri, 15 Dec 2006 21:46:37 +0000 (21:46 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Fri, 15 Dec 2006 21:46:37 +0000 (21:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32613 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Bytecode/Reader/Analyzer.cpp

index 3d6a001080eacb5574608190eb8440f48ab329b6..078360249c6612d73560fb17e950fdcacaf8f80d 100644 (file)
@@ -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() {