StringRef.h: __builtin_strlen seems to exist in VS 2017 MSVC 19.16 or later
authorHans Wennborg <hans@chromium.org>
Thu, 6 Feb 2020 11:27:02 +0000 (12:27 +0100)
committerHans Wennborg <hans@chromium.org>
Thu, 6 Feb 2020 11:33:44 +0000 (12:33 +0100)
This is a follow-up to ff837aa63cd, as discussed on the llvm-commits
thread for that one.

llvm/include/llvm/ADT/StringRef.h

index 75a6e1a..0c36e33 100644 (file)
@@ -81,7 +81,7 @@ namespace llvm {
 #if __cplusplus > 201402L
       return std::char_traits<char>::length(Str);
 #elif __has_builtin(__builtin_strlen) || defined(__GNUC__) || \
-    (defined(_MSC_VER) && _MSC_VER >= 1920)
+    (defined(_MSC_VER) && _MSC_VER >= 1916)
       return __builtin_strlen(Str);
 #else
       const char *Begin = Str;