From: Ulrich Drepper Date: Tue, 1 Apr 2003 00:53:02 +0000 (+0000) Subject: (CALL_THREAD_FCT): Align stack of called function correctly. X-Git-Tag: upstream/2.30~19535 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f877b33831e78f327d546c0c282b1b150da30f42;p=external%2Fglibc.git (CALL_THREAD_FCT): Align stack of called function correctly. --- diff --git a/nptl/sysdeps/i386/tls.h b/nptl/sysdeps/i386/tls.h index 8a1f547..7fe2222 100644 --- a/nptl/sysdeps/i386/tls.h +++ b/nptl/sysdeps/i386/tls.h @@ -356,10 +356,9 @@ union user_desc_init #define CALL_THREAD_FCT(descr) \ ({ void *__res; \ int __ignore1, __ignore2; \ - asm volatile ("subl $12, %%esp\n\t" \ - "pushl %%gs:%P4\n\t" \ + asm volatile ("pushl %%gs:%P4\n\t" \ "call *%%gs:%P3\n\t" \ - "addl $16, %%esp" \ + "addl $4, %%esp" \ : "=a" (__res), "=c" (__ignore1), "=d" (__ignore2) \ : "i" (offsetof (struct pthread, start_routine)), \ "i" (offsetof (struct pthread, arg))); \