]> git.eshelyaron.com Git - emacs.git/commitdiff
src/bytecode.c (exec_byte_code): Make hash_code a Lisp_Object.
authorVibhav Pant <vibhavp@gmail.com>
Sat, 11 Feb 2017 18:11:56 +0000 (23:41 +0530)
committerVibhav Pant <vibhavp@gmail.com>
Sat, 11 Feb 2017 18:11:56 +0000 (23:41 +0530)
This avoids using XUINT every time while comparing it with
HASH_HASH (h, i), replacing it with EQ.

src/bytecode.c

index 156265faeea5c4f2183fd0779c66a636549b129b..af94d03b17d326ac388b517fdde7b91dcf138651 100644 (file)
@@ -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;