29 #ifndef PIRANHA_CONFIG_INTEL_HPP 30 #define PIRANHA_CONFIG_INTEL_HPP 32 #if __INTEL_COMPILER < 1500 33 #error Minimum Intel compiler version supported is 15. 36 #define likely(x) __builtin_expect(!!(x), 1) 37 #define unlikely(x) __builtin_expect(!!(x), 0) 39 #define PIRANHA_COMPILER_IS_INTEL