From 592894722312bf2bafcbe39552d1d7b6e134a4de Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sat, 5 Dec 2020 17:29:33 +0000 Subject: [PATCH] riscv64: fix PIC-incompatible assembly --- arch/riscv64/startcontext.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/riscv64/startcontext.S b/arch/riscv64/startcontext.S index 9a885c8..b7edc73 100644 --- a/arch/riscv64/startcontext.S +++ b/arch/riscv64/startcontext.S @@ -25,5 +25,5 @@ FUNC(__start_context) /* otherwise, exit. */ no_linked_context: - j exit + tail exit@plt END(__start_context)