Change dbgs() back to errs() for assert messages as Chris requested.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92076 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Analysis/ProfileInfo.cpp b/lib/Analysis/ProfileInfo.cpp
index d6c2297..afd86b1 100644
--- a/lib/Analysis/ProfileInfo.cpp
+++ b/lib/Analysis/ProfileInfo.cpp
@@ -978,7 +978,7 @@
}
if (FoundPath) continue;
- dbgs() << "{";
+ errs() << "{";
FI = Unvisited.begin(), FE = Unvisited.end();
while(FI != FE) {
const BasicBlock *BB = *FI; ++FI;
@@ -986,9 +986,9 @@
if (FI != FE)
dbgs() << ",";
}
- dbgs() << "}";
+ errs() << "}";
- dbgs() << "ASSERT: could not repair function";
+ errs() << "ASSERT: could not repair function";
assert(0 && "could not repair function");
}