diff options
Diffstat (limited to 'include/llvm/Support/Compiler.h')
-rw-r--r-- | include/llvm/Support/Compiler.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/llvm/Support/Compiler.h b/include/llvm/Support/Compiler.h index 0df154b5d6..e092157218 100644 --- a/include/llvm/Support/Compiler.h +++ b/include/llvm/Support/Compiler.h @@ -128,12 +128,10 @@ // LLVM_BUILTIN_UNREACHABLE - On compilers which support it, expands // to an expression which states that it is undefined behavior for the -// compiler to reach this point. +// compiler to reach this point. Otherwise is not defined. #if defined(__clang__) || (__GNUC__ > 4) \ || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5) # define LLVM_BUILTIN_UNREACHABLE __builtin_unreachable() -#else -# define LLVM_BUILTIN_UNREACHABLE abort() #endif #endif |