emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r117955: src/w32term.h (ALIGN_STACK): Fix the cpp co


From: Eli Zaretskii
Subject: [Emacs-diffs] trunk r117955: src/w32term.h (ALIGN_STACK): Fix the cpp condition.
Date: Fri, 26 Sep 2014 07:06:53 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117955
revision-id: address@hidden
parent: address@hidden
author: Ken Brown <address@hidden>
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Fri 2014-09-26 10:06:35 +0300
message:
  src/w32term.h (ALIGN_STACK): Fix the cpp condition.
modified:
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/w32term.h                  w32term.h-20091113204419-o5vbwnq5f7feedwu-954
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2014-09-25 17:49:02 +0000
+++ b/src/ChangeLog     2014-09-26 07:06:35 +0000
@@ -1,3 +1,7 @@
+2014-09-26  Ken Brown  <address@hidden>
+
+       * w32term.h (ALIGN_STACK): Fix the cpp condition.
+
 2014-09-25  Eli Zaretskii  <address@hidden>
 
        * lisp.h (USE_STACK_LISP_OBJECTS): Default to false for 32-bit

=== modified file 'src/w32term.h'
--- a/src/w32term.h     2014-09-25 17:28:48 +0000
+++ b/src/w32term.h     2014-09-26 07:06:35 +0000
@@ -30,7 +30,7 @@
    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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]