]> git.eshelyaron.com Git - emacs.git/commitdiff
Pacify gcc -Woverflow more nicely
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 12 Jul 2021 06:54:32 +0000 (23:54 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 12 Jul 2021 07:12:20 +0000 (00:12 -0700)
* src/alloc.c (mark_maybe_pointer): Simplify pacification
of gcc -Woverflow (unknown GCC version).

src/alloc.c

index e3b038c51cdba6227451673609a4fc7fa3568583..ee3fd64a0034c24851d9d7ad09a783e6cc6294bc 100644 (file)
@@ -4764,12 +4764,7 @@ mark_maybe_pointer (void *p, bool symbol_only)
         from Emacs source code, it can occur in some cases.  To fix
         this problem, the pdumper code should grok non-initial
         addresses, as the non-pdumper code does.  */
-#ifdef WIDE_EMACS_INT
-      uintptr_t mask = ~((uintptr_t) 0);
-#else
-      uintptr_t mask = VALMASK;
-#endif
-      void *po = (void *) ((uintptr_t) p & mask);
+      void *po = (void *) ((uintptr_t) p & (uintptr_t) VALMASK);
       char *cp = p;
       char *cpo = po;
       /* Don't use pdumper_object_p_precise here! It doesn't check the