aboutsummaryrefslogtreecommitdiff
path: root/lib/Driver/Driver.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-03-18 06:51:03 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-03-18 06:51:03 +0000
commitaa469f62f2b3ba6f560ccadfc379f8f4c45e3d51 (patch)
treec4cb897e5469ff1da3f8d2a812286dec5ba9f686 /lib/Driver/Driver.cpp
parent24b5560b6ea51b8a260194710468fa060775fc01 (diff)
Driver: Print version on stderr to match [gc]cc.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67178 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Driver.cpp')
-rw-r--r--lib/Driver/Driver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Driver/Driver.cpp b/lib/Driver/Driver.cpp
index 4b3596d7b3..1e4cd7f478 100644
--- a/lib/Driver/Driver.cpp
+++ b/lib/Driver/Driver.cpp
@@ -216,7 +216,7 @@ void Driver::PrintVersion() const {
// FIXME: The following handlers should use a callback mechanism, we
// don't know what the client would like to do.
- llvm::outs() << "ccc version 1.0" << "\n";
+ llvm::errs() << "ccc version 1.0" << "\n";
}
bool Driver::HandleImmediateArgs(const Compilation &C) {