Change errs() to dbgs().
[oota-llvm.git] / lib / Transforms / Scalar / SimplifyLibCalls.cpp
index 281bc256642750784fab080ac2aaefb4cc9ef583..43a341856045a45598f0a5f5a8ccf3db8fa77965 100644 (file)
@@ -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;