diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-01-23 02:11:34 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-01-23 02:11:34 +0000 |
commit | a18f1b88a7ef3d2c944bb1d3b6586a2860ce2baa (patch) | |
tree | c8480debadb239d9ac0f957e3142bc6ab09424b5 /lib/Driver/Driver.cpp | |
parent | 92f883177b162928a8e632e4e3b93fafd2b26072 (diff) |
Rename getClangFullVendorVersion() to getClangFullVersion().
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@94273 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Driver.cpp')
-rw-r--r-- | lib/Driver/Driver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Driver/Driver.cpp b/lib/Driver/Driver.cpp index 46e7f10e85..852a018e10 100644 --- a/lib/Driver/Driver.cpp +++ b/lib/Driver/Driver.cpp @@ -282,7 +282,7 @@ void Driver::PrintHelp(bool ShowHidden) const { void Driver::PrintVersion(const Compilation &C, llvm::raw_ostream &OS) const { // FIXME: The following handlers should use a callback mechanism, we don't // know what the client would like to do. - OS << getClangFullVendorVersion() << '\n'; + OS << getClangFullVersion() << '\n'; const ToolChain &TC = C.getDefaultToolChain(); OS << "Target: " << TC.getTripleString() << '\n'; |