>From 396a33a3656a0e2bbe2f24a81df64914491c44e5 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 14 Aug 2018 04:38:44 -0700 Subject: [PATCH] Port recent changes to older GCC Problem reported by Glenn Morris in: https://lists.gnu.org/r/emacs-devel/2018-08/msg00446.html * src/lisp.h (make_pointer_integer_unsafe): Port to older GCC. --- src/lisp.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lisp.h b/src/lisp.h index 18d53537cc..da93efdd93 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -1191,7 +1191,8 @@ XFIXNUMPTR (Lisp_Object a) INLINE Lisp_Object make_pointer_integer_unsafe (void *p) { - return TAG_PTR (Lisp_Int0, p); + Lisp_Object a = TAG_PTR (Lisp_Int0, p); + return a; } INLINE Lisp_Object -- 2.17.1