projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fe7fe66
)
Change errs() to dbgs().
author
David Greene
<greened@obbligato.org>
Tue, 5 Jan 2010 01:27:21 +0000
(
01:27
+0000)
committer
David Greene
<greened@obbligato.org>
Tue, 5 Jan 2010 01:27:21 +0000
(
01:27
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92615
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Transforms/Scalar/SimplifyLibCalls.cpp
patch
|
blob
|
history
diff --git
a/lib/Transforms/Scalar/SimplifyLibCalls.cpp
b/lib/Transforms/Scalar/SimplifyLibCalls.cpp
index 281bc256642750784fab080ac2aaefb4cc9ef583..43a341856045a45598f0a5f5a8ccf3db8fa77965 100644
(file)
--- 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(
err
s() << "SimplifyLibCalls simplified: " << *CI;
-
err
s() << " into: " << *Result << "\n");
+ DEBUG(
dbg
s() << "SimplifyLibCalls simplified: " << *CI;
+
dbg
s() << " into: " << *Result << "\n");
// Something changed!
Changed = true;