summaryrefslogtreecommitdiff
path: root/lib/Support
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2010-01-05 01:29:03 +0000
committerDavid Greene <greened@obbligato.org>2010-01-05 01:29:03 +0000
commitfcb5b831f613e1d73b490efa6c458334d04918c3 (patch)
treebcdb55987a4ff0b68c42b174de07cbaf426ade5b /lib/Support
parentda80ff6ae6ed7b10d8525942f28b4c27feaf8c2f (diff)
downloadllvm-fcb5b831f613e1d73b490efa6c458334d04918c3.tar.gz
llvm-fcb5b831f613e1d73b490efa6c458334d04918c3.tar.bz2
llvm-fcb5b831f613e1d73b490efa6c458334d04918c3.tar.xz
Change errs() to dbgs().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92646 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
-rw-r--r--lib/Support/CommandLine.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Support/CommandLine.cpp b/lib/Support/CommandLine.cpp
index b6c0e08c8c..75b02d3317 100644
--- a/lib/Support/CommandLine.cpp
+++ b/lib/Support/CommandLine.cpp
@@ -778,10 +778,10 @@ void cl::ParseCommandLineOptions(int argc, char **argv,
free(*i);
}
- DEBUG(errs() << "Args: ";
+ DEBUG(dbgs() << "Args: ";
for (int i = 0; i < argc; ++i)
- errs() << argv[i] << ' ';
- errs() << '\n';
+ dbgs() << argv[i] << ' ';
+ dbgs() << '\n';
);
// If we had an error processing our arguments, don't let the program execute