diff options
author | David Greene <greened@obbligato.org> | 2010-01-05 01:27:21 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2010-01-05 01:27:21 +0000 |
commit | 9ddc6e2e12bafab98d3c74531473e6f090a0551c (patch) | |
tree | 230de5a173b4dfbf82984bfc16d60f8ef52039d7 /llvm/lib/Transforms | |
parent | 1efdb45562c6e0a5b3f244968d281847b61ba0fa (diff) | |
download | bcm5719-llvm-9ddc6e2e12bafab98d3c74531473e6f090a0551c.tar.gz bcm5719-llvm-9ddc6e2e12bafab98d3c74531473e6f090a0551c.zip |
Change errs() to dbgs().
llvm-svn: 92615
Diffstat (limited to 'llvm/lib/Transforms')
-rw-r--r-- | llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp b/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp index 281bc256642..43a34185604 100644 --- a/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp +++ b/llvm/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; |