From b6e59cd925cbe6c0f23cf46828d47e6e7edd17c9 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 11 Sep 2018 11:57:31 -0400 Subject: apply hidden visibility to sigreturn code fragments these were overlooked in the declarations overhaul work because they are not properly declared, and the current framework even allows their declared types to vary by arch. at some point this should be cleaned up, but I'm not sure what the right way would be. --- src/signal/sh/restore.s | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/signal/sh/restore.s') diff --git a/src/signal/sh/restore.s b/src/signal/sh/restore.s index d5df8e14..3a92199d 100644 --- a/src/signal/sh/restore.s +++ b/src/signal/sh/restore.s @@ -1,4 +1,5 @@ .global __restore +.hidden __restore __restore: mov #119, r3 !__NR_sigreturn trapa #31 @@ -10,6 +11,7 @@ __restore: or r0, r0 .global __restore_rt +.hidden __restore_rt __restore_rt: mov #100, r3 !__NR_rt_sigreturn add #73, r3 -- cgit v1.2.1