aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-23 07:05:07 +0000
committerChris Lattner <sabre@nondot.org>2009-08-23 07:05:07 +0000
commit4437ae213d5435390f0750213b53ec807c047f22 (patch)
tree25d7db39673a28eec259f4a82d38169205befb0f /lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp
parent893e1c90a03a53cf13f73849324e83612688428a (diff)
downloadexternal_llvm-4437ae213d5435390f0750213b53ec807c047f22.zip
external_llvm-4437ae213d5435390f0750213b53ec807c047f22.tar.gz
external_llvm-4437ae213d5435390f0750213b53ec807c047f22.tar.bz2
eliminate uses of cerr()
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79834 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp b/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp
index ab2ad8b..628a2a87 100644
--- a/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp
+++ b/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp
@@ -112,9 +112,9 @@ void ScheduleDAGList::ReleaseSucc(SUnit *SU, const SDep &D) {
#ifndef NDEBUG
if (SuccSU->NumPredsLeft < 0) {
- cerr << "*** Scheduling failed! ***\n";
+ errs() << "*** Scheduling failed! ***\n";
SuccSU->dump(this);
- cerr << " has been released too many times!\n";
+ errs() << " has been released too many times!\n";
llvm_unreachable(0);
}
#endif