ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/compiler.h
(Generate patch)

Comparing deliantra/server/include/compiler.h (file contents):
Revision 1.16 by root, Wed Nov 16 23:42:00 2016 UTC vs.
Revision 1.17 by root, Fri Nov 18 04:46:35 2016 UTC

41# define expect(expr,value) (expr) 41# define expect(expr,value) (expr)
42# define prefetch(addr,rw,locality) 42# define prefetch(addr,rw,locality)
43# define noinline 43# define noinline
44#endif 44#endif
45 45
46#if GCC_VERSION(4,5)
47# define decltype(x) __decltype(x)
48#elif GCC_VERSION(3,0)
49# define decltype(x) typeof(x)
50#endif
51
52#define func_const attribute ((const)) 46#define func_const attribute ((const))
53#define func_pure attribute ((pure)) 47#define func_pure attribute ((pure))
54#define func_hot attribute ((hot)) // 4.x 48#define func_hot attribute ((hot)) // 4.x
55#define func_cold attribute ((cold)) // 4.x 49#define func_cold attribute ((cold)) // 4.x
56 50

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines