summaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2010-01-05 01:27:21 +0000
committerDavid Greene <greened@obbligato.org>2010-01-05 01:27:21 +0000
commit6a6b90ebd9aec43744de3a426912c185e47a3e29 (patch)
tree6e3c03ffd572b8611ce662cf107a248c451ed031 /lib/Transforms/Scalar
parentfe7fe6603fea2ca121282cd329f5300ea7d9fd51 (diff)
downloadllvm-6a6b90ebd9aec43744de3a426912c185e47a3e29.tar.gz
llvm-6a6b90ebd9aec43744de3a426912c185e47a3e29.tar.bz2
llvm-6a6b90ebd9aec43744de3a426912c185e47a3e29.tar.xz
Change errs() to dbgs().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92615 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar')
-rw-r--r--lib/Transforms/Scalar/SimplifyLibCalls.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/Scalar/SimplifyLibCalls.cpp b/lib/Transforms/Scalar/SimplifyLibCalls.cpp
index 281bc25664..43a3418560 100644
--- a/lib/Transforms/Scalar/SimplifyLibCalls.cpp
+++ b/lib/Transforms/Scalar/SimplifyLibCalls.cpp
@@ -1900,8 +1900,8 @@ bool SimplifyLibCalls::runOnFunction(Function &F) {
Value *Result = LCO->OptimizeCall(CI, TD, Builder);
if (Result == 0) continue;
- DEBUG(errs() << "SimplifyLibCalls simplified: " << *CI;
- errs() << " into: " << *Result << "\n");
+ DEBUG(dbgs() << "SimplifyLibCalls simplified: " << *CI;
+ dbgs() << " into: " << *Result << "\n");
// Something changed!
Changed = true;