Commit for blight: fix stack alignment.

svn path=/trunk/; revision=14588
This commit is contained in:
Art Yerkes 2005-04-11 15:43:04 +00:00
parent 093d9f292c
commit 298503a6e4

View file

@ -11,12 +11,8 @@ void *alloca(size_t s)
if ( s == 0 )
return NULL;
if ( (s & 0xfffffffc) != 0 )
as += 4;
as &= 0xfffffffc;
as = (as + 3) & (~3);
__asm__ __volatile__(
"mov %0, %%edx \n"
// "popl %%ebp \n"