aboutsummaryrefslogtreecommitdiffstats
path: root/src/w32term.h
diff options
context:
space:
mode:
authorEli Zaretskii2014-10-13 15:44:03 +0300
committerEli Zaretskii2014-10-13 15:44:03 +0300
commit2b882ee7556d07f874e3fcf51939604d6dd20197 (patch)
tree46e37e33a5fbda60aed0921bfe3df8184cdca5bc /src/w32term.h
parent07bcae0d0b5c2ca39c143a99831a3eb3c8c33fa1 (diff)
downloademacs-2b882ee7556d07f874e3fcf51939604d6dd20197.tar.gz
emacs-2b882ee7556d07f874e3fcf51939604d6dd20197.zip
Fix bug #18699 with startup aborts of 32-bit MinGW64 build.
src/w32term.h (ALIGN_STACK): Use _WIN64, not _W64, to distinguish between 32-bit and 64-bit MinGW builds.
Diffstat (limited to 'src/w32term.h')
-rw-r--r--src/w32term.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32term.h b/src/w32term.h
index 065ef6a8d72..fb37550100e 100644
--- a/src/w32term.h
+++ b/src/w32term.h
@@ -30,7 +30,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
30 re-align the stack at function entry. Further details about this 30 re-align the stack at function entry. Further details about this
31 can be found in http://www.peterstock.co.uk/games/mingw_sse/. */ 31 can be found in http://www.peterstock.co.uk/games/mingw_sse/. */
32#ifdef __GNUC__ 32#ifdef __GNUC__
33# if USE_STACK_LISP_OBJECTS && !defined _W64 && !defined __x86_64__ \ 33# if USE_STACK_LISP_OBJECTS && !defined _WIN64 && !defined __x86_64__ \
34 && __GNUC__ + (__GNUC_MINOR__ > 1) >= 5 34 && __GNUC__ + (__GNUC_MINOR__ > 1) >= 5
35# define ALIGN_STACK __attribute__((force_align_arg_pointer)) 35# define ALIGN_STACK __attribute__((force_align_arg_pointer))
36# else 36# else