[PATCH] D69925: remove redundant LLVM version from version string when setting CLANG_VENDOR
Nick Desaulniers via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Nov 8 09:31:14 PST 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rG51adeae1c90c: remove redundant LLVM version from version string when setting CLANG_VENDOR (authored by nickdesaulniers).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D69925/new/
https://reviews.llvm.org/D69925
Files:
clang/lib/Basic/Version.cpp
Index: clang/lib/Basic/Version.cpp
===================================================================
--- clang/lib/Basic/Version.cpp
+++ clang/lib/Basic/Version.cpp
@@ -127,11 +127,6 @@
OS << ToolName << " version " CLANG_VERSION_STRING " "
<< getClangFullRepositoryVersion();
- // If vendor supplied, include the base LLVM version as well.
-#ifdef CLANG_VENDOR
- OS << " (based on " << BACKEND_PACKAGE_STRING << ")";
-#endif
-
return OS.str();
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D69925.228477.patch
Type: text/x-patch
Size: 468 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20191108/03eca907/attachment.bin>
More information about the cfe-commits
mailing list