From: Andreas Schwab Date: Thu, 4 Oct 2018 13:46:00 +0000 (+0200) Subject: Don't use PSEUDO_END for non-PSEUDO function X-Git-Tag: glibc-2.29~382 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=367d7cc2cb293a2fe952e00168f574d92c69764c;p=thirdparty%2Fglibc.git Don't use PSEUDO_END for non-PSEUDO function --- diff --git a/ChangeLog b/ChangeLog index aff4410ac69..0a5cb140d19 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2018-10-23 Andreas Schwab + + * sysdeps/unix/sysv/linux/riscv/setcontext.S (__setcontext) + (__start_context): Use END instead of PSEUDO_END. + 2018-10-22 Joseph Myers * sysdeps/unix/sysv/linux/syscall-names.list: Update kernel diff --git a/sysdeps/unix/sysv/linux/riscv/setcontext.S b/sysdeps/unix/sysv/linux/riscv/setcontext.S index 9f1c7b41fd4..db6238a163d 100644 --- a/sysdeps/unix/sysv/linux/riscv/setcontext.S +++ b/sysdeps/unix/sysv/linux/riscv/setcontext.S @@ -94,7 +94,7 @@ LEAF (__setcontext) 99: j __syscall_error -PSEUDO_END (__setcontext) +END (__setcontext) weak_alias (__setcontext, setcontext) LEAF (__start_context) @@ -111,4 +111,4 @@ LEAF (__start_context) jal __setcontext 1: j exit -PSEUDO_END (__start_context) +END (__start_context)