diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/clone.S | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 8490083ead..e23ef4c6f4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2018-03-10 Zack Weinberg <zackw@panix.com> + + * sysdeps/unix/sysv/linux/alpha/clone.S (__clone): Wrap manual + uses of $at in .set noat / .set at. + 2018-03-10 H.J. Lu <hongjiu.lu@intel.com> * include/setjmp.h (__libc_longjmp): Remove libc_hidden_proto. diff --git a/sysdeps/unix/sysv/linux/alpha/clone.S b/sysdeps/unix/sysv/linux/alpha/clone.S index bd85b0b1d3..810a2e5e78 100644 --- a/sysdeps/unix/sysv/linux/alpha/clone.S +++ b/sysdeps/unix/sysv/linux/alpha/clone.S @@ -40,9 +40,11 @@ cfi_startproc __clone: #ifdef PROF + .set noat ldgp gp,0(pv) lda AT, _mcount jsr AT, (AT), _mcount + .set at #endif /* Sanity check arguments. */ |