diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-01-22 20:55:35 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-01-22 20:55:35 +0000 |
commit | 517e676b9e1524e39beeb47718822f2647801d1a (patch) | |
tree | 0cca5f69805de64b3c83350e35c89f330cbf6d21 /lib/Driver/Driver.cpp | |
parent | 9fb48de917e6646725d5bb01b6e2c5ec46ff75a1 (diff) |
Rename getClangSubversionPath() -> getClangRepositoryPath() and have it return a StringRef.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@94213 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 c2693d8dff..5490ef3d67 100644 --- a/lib/Driver/Driver.cpp +++ b/lib/Driver/Driver.cpp @@ -286,7 +286,7 @@ void Driver::PrintVersion(const Compilation &C, llvm::raw_ostream &OS) const { OS << CLANG_VENDOR; #endif OS << "clang version " CLANG_VERSION_STRING " (" - << getClangSubversionPath(); + << getClangRepositoryPath(); if (unsigned Revision = getClangSubversionRevision()) OS << " " << Revision; OS << ")" << '\n'; |