$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r78449 - trunk/libs/context/src/asm
From: oliver.kowalke_at_[hidden]
Date: 2012-05-13 03:57:21
Author: olli
Date: 2012-05-13 03:57:19 EDT (Sun, 13 May 2012)
New Revision: 78449
URL: http://svn.boost.org/trac/boost/changeset/78449
Log:
context: fix for MacOS X 64bit
Text files modified: 
   trunk/libs/context/src/asm/fcontext_x86_64_sysv_macho_gas.S |     4 ++--                                    
   1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/libs/context/src/asm/fcontext_x86_64_sysv_macho_gas.S
==============================================================================
--- trunk/libs/context/src/asm/fcontext_x86_64_sysv_macho_gas.S	(original)
+++ trunk/libs/context/src/asm/fcontext_x86_64_sysv_macho_gas.S	2012-05-13 03:57:19 EDT (Sun, 13 May 2012)
@@ -89,7 +89,7 @@
 
     pushq  %rdi                             /* save pointer to fcontext_t */
     movq   %rdx,                 %rdi       /* stack pointer as arg for align_stack */
-    call   align_stack_at_PLT                  /* align stack */
+    call   _align_stack                     /* align stack */
     movq   %rax,                 %rdx       /* begin of aligned stack */
     popq   %rdi                             /* restore pointer to fcontext_t */
 
@@ -107,5 +107,5 @@
 
 finish:
     xorq    %rdi,              %rdi         /* exit code is zero */
-    call   _exit_at_PLT                        /* exit application */
+    call   _exit                            /* exit application */
     hlt