Spruce up the error output.
authorBill Wendling <isanbard@gmail.com>
Tue, 29 Mar 2011 04:28:26 +0000 (04:28 +0000)
committerBill Wendling <isanbard@gmail.com>
Tue, 29 Mar 2011 04:28:26 +0000 (04:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128451 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Dominators.cpp

index c374b067d72c2f7d5ed2bd13a32b4dbce6118d60..08b845ef9d6b44ae98ca91ead5982289022561d5 100644 (file)
@@ -68,9 +68,8 @@ void DominatorTree::verifyAnalysis() const {
   DominatorTree OtherDT;
   OtherDT.getBase().recalculate(F);
   if (compare(OtherDT)) {
-    errs() << "DominatorTree is not up to date!  Computed:\n";
+    errs() << "DominatorTree is not up to date!\nComputed:\n";
     print(errs());
-    
     errs() << "\nActual:\n";
     OtherDT.print(errs());
     abort();