OSDN Git Service

Add a newline after this debug output.
authorBill Wendling <isanbard@gmail.com>
Wed, 10 Dec 2008 23:24:43 +0000 (23:24 +0000)
committerBill Wendling <isanbard@gmail.com>
Wed, 10 Dec 2008 23:24:43 +0000 (23:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60861 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/BranchFolding.cpp

index 727f0a5..4bf9434 100644 (file)
@@ -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.