break overly long line in sanitizer_win.cc

llvm-svn: 291062
This commit is contained in:
Bob Haarman 2017-01-05 01:35:38 +00:00
parent eea52429cd
commit f04df85258
1 changed files with 2 additions and 1 deletions

View File

@ -37,7 +37,8 @@
// macro should not terminate the process to avoid infinite recursion.
#if defined(__clang__)
# define BUILTIN_UNREACHABLE() __builtin_unreachable()
#elif defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5))
#elif defined(__GNUC__) && \
(__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5))
# define BUILTIN_UNREACHABLE() __builtin_unreachable()
#elif defined(_MSC_VER)
# define BUILTIN_UNREACHABLE() __assume(0)