diff options
author | Bill Wendling <isanbard@gmail.com> | 2008-12-10 23:24:43 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2008-12-10 23:24:43 +0000 |
commit | 0ffa3de9e9b342c0fb529853e14632c66ec9725f (patch) | |
tree | 96395a669e48f38f870934fc3e9fabe2162f8abe /lib/CodeGen/BranchFolding.cpp | |
parent | c1449e63ffd055d1819682441f9d474f20e3fcbc (diff) |
Add a newline after this debug output.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60861 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/BranchFolding.cpp')
-rw-r--r-- | lib/CodeGen/BranchFolding.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/BranchFolding.cpp b/lib/CodeGen/BranchFolding.cpp index 727f0a5cd1..4bf9434956 100644 --- a/lib/CodeGen/BranchFolding.cpp +++ b/lib/CodeGen/BranchFolding.cpp @@ -596,7 +596,7 @@ bool BranchFolder::TryMergeBlocks(MachineBasicBlock *SuccBB, unsigned minCommonTailLength = (SuccBB ? 1 : 2) + 1; MadeChange = false; - DOUT << "\nTryMergeBlocks " << MergePotentials.size(); + DOUT << "\nTryMergeBlocks " << MergePotentials.size() << '\n'; // Sort by hash value so that blocks with identical end sequences sort // together. |