From ef2f595f7489a79b328766e3f8c2c899c8d23fd1 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Wed, 17 Oct 2012 23:45:21 -0400 Subject: fix microblaze asm relocations for shared libc only @PLT relocations are considered functions for purposes of -Bsymbolic-functions, so always use @PLT. it should not hurt in the static-linked case. --- src/thread/microblaze/syscall_cp.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/thread/microblaze/syscall_cp.s') diff --git a/src/thread/microblaze/syscall_cp.s b/src/thread/microblaze/syscall_cp.s index c470521c..ce38b56c 100644 --- a/src/thread/microblaze/syscall_cp.s +++ b/src/thread/microblaze/syscall_cp.s @@ -4,7 +4,7 @@ __syscall_cp_asm: .global __cp_begin __cp_begin: lwi r5, r5, 0 - bnei r5, __cancel + bnei r5, __cancel@PLT addi r12, r6, 0 add r5, r7, r0 add r6, r8, r0 -- cgit v1.2.1