Change dbgs() back to errs() for assert messages as Chris requested.
authorDavid Greene <greened@obbligato.org>
Wed, 23 Dec 2009 22:59:29 +0000 (22:59 +0000)
committerDavid Greene <greened@obbligato.org>
Wed, 23 Dec 2009 22:59:29 +0000 (22:59 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92076 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/ProfileInfo.cpp

index d6c2297e3b4fc2b7730169cfa02e59b3b4e89235..afd86b156b29bc07a4d1c158087418381c76282d 100644 (file)
@@ -978,7 +978,7 @@ void ProfileInfoT<Function,BasicBlock>::repair(const Function *F) {
     }
     if (FoundPath) continue;
 
-    dbgs() << "{";
+    errs() << "{";
     FI = Unvisited.begin(), FE = Unvisited.end();
     while(FI != FE) {
       const BasicBlock *BB = *FI; ++FI;
@@ -986,9 +986,9 @@ void ProfileInfoT<Function,BasicBlock>::repair(const Function *F) {
       if (FI != FE)
         dbgs() << ",";
     }
-    dbgs() << "}";
+    errs() << "}";
 
-    dbgs() << "ASSERT: could not repair function";
+    errs() << "ASSERT: could not repair function";
     assert(0 && "could not repair function");
   }