diff options
| author | Dan Gohman <gohman@apple.com> | 2010-08-20 18:03:05 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2010-08-20 18:03:05 +0000 |
| commit | ca8093ae3a13338bd8ee538242fac595e3d49322 (patch) | |
| tree | c54e9b3ab0eed1937b557c1c4c08c95819308427 /lib/Analysis | |
| parent | 8eaea3c212760e39e4916f4e9139bb03382e3751 (diff) | |
| download | external_llvm-ca8093ae3a13338bd8ee538242fac595e3d49322.zip external_llvm-ca8093ae3a13338bd8ee538242fac595e3d49322.tar.gz external_llvm-ca8093ae3a13338bd8ee538242fac595e3d49322.tar.bz2 | |
Convert DbgInfoPrinter to use errs() instead of outs().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111659 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis')
| -rw-r--r-- | lib/Analysis/DbgInfoPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/DbgInfoPrinter.cpp b/lib/Analysis/DbgInfoPrinter.cpp index bdd9a26..0567750 100644 --- a/lib/Analysis/DbgInfoPrinter.cpp +++ b/lib/Analysis/DbgInfoPrinter.cpp @@ -40,7 +40,7 @@ namespace { void printVariableDeclaration(const Value *V); public: static char ID; // Pass identification - PrintDbgInfo() : FunctionPass(ID), Out(outs()) {} + PrintDbgInfo() : FunctionPass(ID), Out(errs()) {} virtual bool runOnFunction(Function &F); virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
