1
0
Fork 0
forked from len0rd/rockbox

These macros have been replaced by (UN)LIKELY macros and were not used anywhere.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23780 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Nils Wallménius 2009-11-29 09:44:15 +00:00
parent f0d0ba86ff
commit 3c1cffae70

View file

@ -272,17 +272,5 @@ static inline int32_t VFLOAT_ADD(int32_t a,int32_t ap,
return(a);
}
#ifdef __GNUC__
#if __GNUC__ >= 3
#define EXPECT(a, b) __builtin_expect((a), (b))
#else
#define EXPECT(a, b) (a)
#endif
#else
#define EXPECT(a, b) (a)
#endif
#endif