unreachable
parent
befd5e0ca1
commit
79ad108fab
|
@ -1,6 +1,6 @@
|
|||
cmake_minimum_required(VERSION 3.20)
|
||||
include(cmake/color.cmake)
|
||||
set(BLT_VERSION 0.18.19)
|
||||
set(BLT_VERSION 0.18.20)
|
||||
set(BLT_TEST_VERSION 0.0.1)
|
||||
|
||||
set(BLT_TARGET BLT)
|
||||
|
|
|
@ -96,6 +96,7 @@ namespace blt
|
|||
|
||||
|
||||
#if defined(__GNUC__) || defined(__llvm__)
|
||||
#define BLT_UNREACHABLE __builtin_unreachable()
|
||||
#define BLT_ATTRIB_NO_INLINE __attribute__ ((noinline))
|
||||
/**
|
||||
* means that the return value is solely a function of the arguments,
|
||||
|
@ -114,13 +115,20 @@ namespace blt
|
|||
#else
|
||||
#if defined(_MSC_VER) && !defined(__INTEL_COMPILER)
|
||||
#define BLT_ATTRIB_NO_INLINE __declspec(noinline)
|
||||
#define BLT_UNREACHABLE __assume(false)
|
||||
#else
|
||||
#define BLT_ATTRIB_NO_INLINE
|
||||
#define BLT_UNREACHABLE
|
||||
#endif
|
||||
#define BLT_ATTRIB_CONST
|
||||
#define BLT_ATTRIB_PURE
|
||||
#endif
|
||||
|
||||
#if __cplusplus > 202002L
|
||||
#undef BLT_UNREACHABLE
|
||||
#define BLT_UNREACHABLE std::unreachable()
|
||||
#endif
|
||||
|
||||
template<typename T>
|
||||
BLT_ATTRIB_NO_INLINE void black_box(const T& val)
|
||||
{
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit d88c5e15079047777b418132ece5879e7c9aaa2b
|
||||
Subproject commit 8a889d3699b3c09ade435641fb034427f3fd12b6
|
Loading…
Reference in New Issue