From 241692602563684cb4a964ed2af8776057dd2a8d Mon Sep 17 00:00:00 2001 From: Ken Brown Date: Fri, 26 Sep 2014 10:06:35 +0300 Subject: [PATCH] src/w32term.h (ALIGN_STACK): Fix the cpp condition. --- src/ChangeLog | 4 ++++ src/w32term.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index 87d33121495..526d2058b51 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2014-09-26 Ken Brown + + * w32term.h (ALIGN_STACK): Fix the cpp condition. + 2014-09-25 Eli Zaretskii * lisp.h (USE_STACK_LISP_OBJECTS): Default to false for 32-bit diff --git a/src/w32term.h b/src/w32term.h index f9025fd13ad..065ef6a8d72 100644 --- a/src/w32term.h +++ b/src/w32term.h @@ -30,7 +30,7 @@ along with GNU Emacs. If not, see . */ re-align the stack at function entry. Further details about this can be found in http://www.peterstock.co.uk/games/mingw_sse/. */ #ifdef __GNUC__ -# if defined USE_STACK_LISP_OBJECTS && !defined _W64 \ +# if USE_STACK_LISP_OBJECTS && !defined _W64 && !defined __x86_64__ \ && __GNUC__ + (__GNUC_MINOR__ > 1) >= 5 # define ALIGN_STACK __attribute__((force_align_arg_pointer)) # else -- 2.39.5