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:
parent
d73f2d856c
commit
2416926025
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user