diff options
author | Ulrich Drepper <drepper@redhat.com> | 1997-03-17 04:02:41 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1997-03-17 04:02:41 +0000 |
commit | 02f25bd59b2de666de5f5e229608f955c013f822 (patch) | |
tree | 43bef08679b73e2cbca589fa3b8b2f9a9ad66b4e | |
parent | c7b0194ac35198ee48760812ccf03b57c086e50d (diff) | |
download | glibc-02f25bd59b2de666de5f5e229608f955c013f822.tar.gz glibc-02f25bd59b2de666de5f5e229608f955c013f822.tar.xz glibc-02f25bd59b2de666de5f5e229608f955c013f822.zip |
(nofini): *Really* align stack to 8-byte boundary.
-rw-r--r-- | sysdeps/i386/elf/start.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sysdeps/i386/elf/start.S b/sysdeps/i386/elf/start.S index 53e324b91b..8b7faaefc4 100644 --- a/sysdeps/i386/elf/start.S +++ b/sysdeps/i386/elf/start.S @@ -73,6 +73,8 @@ nofini: boundary to avoid penalties from misaligned accesses. Thanks to Edward Seidl <seidl@janed.com> for pointing this out. */ andl $0xfffffff8, %esp + pushl %eax /* Push garbage because we allocate + twelve more bytes. */ pushl %eax /* Push third argument: envp. */ pushl %edx /* Push second argument: argv. */ |