From ace36f1b151ea5c4ea8f7335aba02567e373ac78 Mon Sep 17 00:00:00 2001 From: Eric Scharff Date: Thu, 4 Oct 2007 07:30:39 -0600 Subject: [PATCH] Simplify code for Mac stack alignment conventions --- src/cdecl.S | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/cdecl.S b/src/cdecl.S index 25b8c9ff5c..bce6257a5e 100644 --- a/src/cdecl.S +++ b/src/cdecl.S @@ -20,14 +20,13 @@ cdeclCall: // reserve space for arguments movl 16(%ebp),%ecx + subl %ecx,%esp + #ifdef __APPLE__ // align to a 16 byte boundary on Darwin - addl $15,%ecx - andl $0xFFFFFFF0,%ecx - addl $8,%ecx + andl $0xFFFFFFF0,%esp #endif - subl %ecx,%esp // copy arguments into place movl $0,%ecx