summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Support/CommandLine.cpp
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
commit9d24d0c3e60ddf9d976bffc133f7892f74710cd2 (patch)
tree11d7480b4a0cd08f37b042369a7acf96918c2941 /llvm/lib/Support/CommandLine.cpp
parent649efc465694980ea9581f1753929c8ed496d804 (diff)
downloadbcm5719-llvm-9d24d0c3e60ddf9d976bffc133f7892f74710cd2.tar.gz
bcm5719-llvm-9d24d0c3e60ddf9d976bffc133f7892f74710cd2.zip
Change errs() to dbgs().
llvm-svn: 92646
Diffstat (limited to 'llvm/lib/Support/CommandLine.cpp')
-rw-r--r--llvm/lib/Support/CommandLine.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Support/CommandLine.cpp b/llvm/lib/Support/CommandLine.cpp
index b6c0e08c8ca..75b02d33171 100644
--- a/llvm/lib/Support/CommandLine.cpp
+++ b/llvm/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
OpenPOWER on IntegriCloud