View | Details | Raw Unified | Return to bug 1092541
Collapse All | Expand All

(-)a/src/sna/compiler.h (-2 / +1 lines)
Lines 32-38 Link Here
32
#define likely(expr) (__builtin_expect (!!(expr), 1))
32
#define likely(expr) (__builtin_expect (!!(expr), 1))
33
#define unlikely(expr) (__builtin_expect (!!(expr), 0))
33
#define unlikely(expr) (__builtin_expect (!!(expr), 0))
34
#define noinline __attribute__((noinline))
34
#define noinline __attribute__((noinline))
35
#define force_inline inline __attribute__((always_inline))
35
#define force_inline inline
36
#define fastcall __attribute__((regparm(3)))
36
#define fastcall __attribute__((regparm(3)))
37
#define must_check __attribute__((warn_unused_result))
37
#define must_check __attribute__((warn_unused_result))
38
#define constant __attribute__((const))
38
#define constant __attribute__((const))
39
- 

Return to bug 1092541