2012-04-17 11:02:19 +02:00
|
|
|
Index: llvm/tools/clang/lib/Basic/Version.cpp
|
|
|
|
===================================================================
|
|
|
|
--- llvm.orig/tools/clang/lib/Basic/Version.cpp
|
|
|
|
+++ llvm/tools/clang/lib/Basic/Version.cpp
|
|
|
|
@@ -66,19 +66,11 @@ std::string getLLVMRepositoryPath() {
|
2011-05-29 18:36:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string getClangRevision() {
|
|
|
|
-#ifdef SVN_REVISION
|
|
|
|
return SVN_REVISION;
|
|
|
|
-#else
|
|
|
|
- return "";
|
|
|
|
-#endif
|
|
|
|
}
|
|
|
|
|
2012-04-17 11:02:19 +02:00
|
|
|
std::string getLLVMRevision() {
|
|
|
|
-#ifdef LLVM_REVISION
|
|
|
|
return LLVM_REVISION;
|
|
|
|
-#else
|
|
|
|
- return "";
|
|
|
|
-#endif
|
|
|
|
}
|
|
|
|
|
2011-05-29 18:36:18 +02:00
|
|
|
std::string getClangFullRepositoryVersion() {
|