Hello! Does LDC has its own counterpart for GCC's __builtin_expect? To be more specific, I need something to replicate the behaviour of these two macros: #define likely(x) __builtin_expect(!!(x), 1) #define unlikely(x) __builtin_expect(!!(x), 0)