diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-12-15 21:46:37 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-12-15 21:46:37 +0000 |
commit | c6d416ada171ba08dafa3a5c9ea79e7e930d4821 (patch) | |
tree | 08726bd825446df993977d18e50decd907da80c4 /lib/Bytecode | |
parent | ba74cdf7f6044de319e118c28c84e076b421376f (diff) |
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
Diffstat (limited to 'lib/Bytecode')
-rw-r--r-- | lib/Bytecode/Reader/Analyzer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bytecode/Reader/Analyzer.cpp b/lib/Bytecode/Reader/Analyzer.cpp index 3d6a001080..078360249c 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() { |