mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-06-14 04:21:24 +00:00
* src/lisp.h (EQ): Use new 'likely' macro.
This commit is contained in:
parent
0f6c382888
commit
de67c677fe
1 changed files with 1 additions and 1 deletions
|
|
@ -1316,7 +1316,7 @@ EQ (Lisp_Object x, Lisp_Object y)
|
|||
{
|
||||
if (BASE_EQ (x, y))
|
||||
return true;
|
||||
else if (!__builtin_expect (symbols_with_pos_enabled, false))
|
||||
else if (likely (symbols_with_pos_enabled == false))
|
||||
return false;
|
||||
else
|
||||
return slow_eq (x, y);
|
||||
|
|
|
|||
Loading…
Reference in a new issue