about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2018-10-04 15:46:00 +0200
committerAndreas Schwab <schwab@suse.de>2018-10-23 09:41:43 +0200
commit367d7cc2cb293a2fe952e00168f574d92c69764c (patch)
treeb57c0ba0b48471e3a5592057c0755de3e54fc851
parent029ad711b8ad4cf0e5d98e0c138a35a23a376a74 (diff)
downloadglibc-367d7cc2cb293a2fe952e00168f574d92c69764c.tar.gz
glibc-367d7cc2cb293a2fe952e00168f574d92c69764c.tar.xz
glibc-367d7cc2cb293a2fe952e00168f574d92c69764c.zip
Don't use PSEUDO_END for non-PSEUDO function
-rw-r--r--ChangeLog5
-rw-r--r--sysdeps/unix/sysv/linux/riscv/setcontext.S4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index aff4410ac6..0a5cb140d1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2018-10-23  Andreas Schwab  <schwab@suse.de>
+
+	* sysdeps/unix/sysv/linux/riscv/setcontext.S (__setcontext)
+	(__start_context): Use END instead of PSEUDO_END.
+
 2018-10-22  Joseph Myers  <joseph@codesourcery.com>
 
 	* 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 9f1c7b41fd..db6238a163 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)