diff options
author | John David Anglin <danglin@gcc.gnu.org> | 2017-07-16 12:13:14 -0400 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2017-07-16 12:13:14 -0400 |
commit | 07f94b7a96392c8609ac8d29956728d9017e6e8a (patch) | |
tree | debd44245b5a0ec9676864bb14e46ce4fa232d66 | |
parent | d71400dca62ab1b77b2b345a66df77c9f963993b (diff) | |
download | glibc-07f94b7a96392c8609ac8d29956728d9017e6e8a.tar.gz glibc-07f94b7a96392c8609ac8d29956728d9017e6e8a.tar.xz glibc-07f94b7a96392c8609ac8d29956728d9017e6e8a.zip |
Fix __setcontext return value on hppa.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/hppa/setcontext.S | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 903c9e9a97..a1720fc705 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2017-07-16 John David Anglin <danglin@gcc.gnu.org> + * sysdeps/unix/sysv/linux/hppa/setcontext.S (__setcontext): Return 0. + * sysdeps/unix/sysv/linux/hppa/sysdep-cancel.h (PSEUDO): Fix CFA offset. Use .cfi_def_cfa_offset instead of .cfi_offset. Don't record stack pointer offset. Correct PIC register offset. Don't mention frame diff --git a/sysdeps/unix/sysv/linux/hppa/setcontext.S b/sysdeps/unix/sysv/linux/hppa/setcontext.S index 3f4da7938f..848d02e908 100644 --- a/sysdeps/unix/sysv/linux/hppa/setcontext.S +++ b/sysdeps/unix/sysv/linux/hppa/setcontext.S @@ -141,7 +141,7 @@ ENTRY(__setcontext) /* No further context available. Exit now. */ bl HIDDEN_JUMPTARGET(exit), %r2 - ldi -1, %r26 + ldi 0, %r26 .Lerror: |