|
Version: SMASH-3.1
|
|
Go to the documentation of this file.
5 #ifndef SRC_INCLUDE_SMASH_MACROS_H_
6 #define SRC_INCLUDE_SMASH_MACROS_H_
10 #define likely(x) __builtin_expect((x), 1)
11 #define unlikely(x) __builtin_expect((x), 0)
16 #define unlikely(x) (x)
20 #define SMASH_DEPRECATED(msg) __attribute__((deprecated(msg)))