1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 16:51:06 -07:00

src/w32term.h (ALIGN_STACK): Fix a typo in last commit.

Fixes: debbugs:18559
This commit is contained in:
Eli Zaretskii 2014-09-25 20:28:48 +03:00
parent 685460246c
commit 39234ddb3e

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 defined USE_STACK_LISP_OBJECTS && !defined _W64 \
&& __GNUC__ + (__GNUC_MINOR__ > 1) >= 5
# define ALIGN_STACK __attribute__((force_align_arg_pointer))
# else