aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKen Brown2014-09-26 10:06:35 +0300
committerEli Zaretskii2014-09-26 10:06:35 +0300
commit241692602563684cb4a964ed2af8776057dd2a8d (patch)
tree5a72858f8535b025a5ace4b45d99c74fc67b8236 /src
parentd73f2d856cdce1fed213d8d4f693dc60be9553cb (diff)
downloademacs-241692602563684cb4a964ed2af8776057dd2a8d.tar.gz
emacs-241692602563684cb4a964ed2af8776057dd2a8d.zip
src/w32term.h (ALIGN_STACK): Fix the cpp condition.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/w32term.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 87d33121495..526d2058b51 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12014-09-26 Ken Brown <kbrown@cornell.edu>
2
3 * w32term.h (ALIGN_STACK): Fix the cpp condition.
4
12014-09-25 Eli Zaretskii <eliz@gnu.org> 52014-09-25 Eli Zaretskii <eliz@gnu.org>
2 6
3 * lisp.h (USE_STACK_LISP_OBJECTS): Default to false for 32-bit 7 * 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 <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 defined USE_STACK_LISP_OBJECTS && !defined _W64 \ 33# if USE_STACK_LISP_OBJECTS && !defined _W64 && !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