diff options
author | Richard Henderson <rth@redhat.com> | 2004-08-25 19:59:01 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 2004-08-25 19:59:01 +0000 |
commit | effeb660b7506f735067d37e0fba39b3acf87d0b (patch) | |
tree | 03eea74e7c24e89fabbcf47dfd76f15b39937253 /sysdeps/unix | |
parent | d6db09753a9d33d5f5b98d402b01a2b168ac7785 (diff) | |
download | glibc-effeb660b7506f735067d37e0fba39b3acf87d0b.tar.gz glibc-effeb660b7506f735067d37e0fba39b3acf87d0b.tar.xz glibc-effeb660b7506f735067d37e0fba39b3acf87d0b.zip |
* sysdeps/alpha/elf/start.S (_start): Use $15 as frame unwind instead of $31. Zero $15. * sysdeps/unix/sysv/linux/alpha/clone.S (thread_start): Likewise.
2004-08-25 Richard Henderson <rth@redhat.com> * sysdeps/alpha/elf/start.S (_start): Use $15 as frame unwind instead of $31. Zero $15. * sysdeps/unix/sysv/linux/alpha/clone.S (thread_start): Likewise.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/clone.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/alpha/clone.S b/sysdeps/unix/sysv/linux/alpha/clone.S index daa804c3fc..b4766ec457 100644 --- a/sysdeps/unix/sysv/linux/alpha/clone.S +++ b/sysdeps/unix/sysv/linux/alpha/clone.S @@ -89,7 +89,8 @@ $error: .ent thread_start thread_start: - .frame zero,0,zero,0 + .frame fp,0,fp,0 + mov 0, fp .prologue 0 /* Load up the arguments. */ |