mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
internal.h: fix LIKELY
* internal.h (LIKELY, UNLIKELY): inverted conditions generate wrong code. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51421 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ef9d9423cc
commit
6ef6757e46
1 changed files with 2 additions and 2 deletions
|
@ -25,8 +25,8 @@ extern "C" {
|
|||
|
||||
/* likely */
|
||||
#if __GNUC__ >= 3
|
||||
#define LIKELY(x) (__builtin_expect(!(x), 0))
|
||||
#define UNLIKELY(x) (__builtin_expect(!(x), 1))
|
||||
#define LIKELY(x) (__builtin_expect(!!(x), 1))
|
||||
#define UNLIKELY(x) (__builtin_expect(!!(x), 0))
|
||||
#else /* __GNUC__ >= 3 */
|
||||
#define LIKELY(x) (x)
|
||||
#define UNLIKELY(x) (x)
|
||||
|
|
Loading…
Reference in a new issue