diff options
author | Grant Paul <chpwn@chpwn.com> | 2011-01-04 23:31:15 -0800 |
---|---|---|
committer | Grant Paul <chpwn@chpwn.com> | 2011-01-04 23:31:15 -0800 |
commit | 94511d30a0d4f173055292e80d156d8e58da2716 (patch) | |
tree | a3d1791e8f2720c8ae7aed09c00d9b1cdcfd4ef8 /UICaboodle/UCPlatform.h | |
parent | f6e1356137e494e0746becbfda851c8858de1c98 (diff) | |
parent | 9c8730d27cb4ca97a5034de527be90c975144c5e (diff) |
Merge branch 'master' of saurik.com:cydia into url-tabbar
Diffstat (limited to 'UICaboodle/UCPlatform.h')
-rw-r--r-- | UICaboodle/UCPlatform.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/UICaboodle/UCPlatform.h b/UICaboodle/UCPlatform.h index 4f2169e..c241232 100644 --- a/UICaboodle/UCPlatform.h +++ b/UICaboodle/UCPlatform.h @@ -54,3 +54,9 @@ while (false) default: \ _assume(false); \ throw; + +#define _likely(expr) \ + __builtin_expect(expr, 1) + +#define _unlikely(expr) \ + __builtin_expect(expr, 0) |