diff options
author | Vibhav Pant <vibhavp@gmail.com> | 2017-02-11 23:41:56 +0530 |
---|---|---|
committer | Vibhav Pant <vibhavp@gmail.com> | 2017-02-11 23:41:56 +0530 |
commit | e27351e5ddeb9366e25f7c341684d79c487074ce (patch) | |
tree | 6025cdf9c1b0cab13ed10563211e691263f7e651 | |
parent | a35335c767fd7915e4203b3bba60d9c66df7a116 (diff) | |
download | emacs-e27351e5ddeb9366e25f7c341684d79c487074ce.tar.gz |
src/bytecode.c (exec_byte_code): Make hash_code a Lisp_Object.
This avoids using XUINT every time while comparing it with
HASH_HASH (h, i), replacing it with EQ.
-rw-r--r-- | src/bytecode.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/bytecode.c b/src/bytecode.c index 156265faeea..af94d03b17d 100644 --- a/src/bytecode.c +++ b/src/bytecode.c @@ -1428,11 +1428,13 @@ exec_byte_code (Lisp_Object bytestr, Lisp_Object vector, Lisp_Object maxdepth, if (h->count <= 5) { /* Do a linear search if there are not many cases FIXME: 5 is arbitrarily chosen. */ - EMACS_UINT hash_code = h->test.hashfn (&h->test, v1); + Lisp_Object hash_code = h->test.cmpfn + ? make_number(h->test.hashfn (&h->test, v1)) : Qnil; + for (i = h->count; 0 <= --i;) if (EQ (v1, HASH_KEY (h, i)) || (h->test.cmpfn - && hash_code == XUINT (HASH_HASH (h, i)) + && EQ (hash_code, HASH_HASH (h, i)) && h->test.cmpfn (&h->test, v1, HASH_KEY (h, i)))) break; |