1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-27 10:54:40 +00:00

src/w32term.h (ALIGN_STACK): Fix the cpp condition.

This commit is contained in:
Ken Brown 2014-09-26 10:06:35 +03:00 committed by Eli Zaretskii
parent d73f2d856c
commit 2416926025
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2014-09-26 Ken Brown <kbrown@cornell.edu>
* w32term.h (ALIGN_STACK): Fix the cpp condition.
2014-09-25 Eli Zaretskii <eliz@gnu.org>
* lisp.h (USE_STACK_LISP_OBJECTS): Default to false for 32-bit

View File

@ -30,7 +30,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
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