From 73a5d417f5b0e06564d5af3b6fe4519a315a9bf3 Mon Sep 17 00:00:00 2001 From: Peter Kjellerstedt Date: Fri, 26 Sep 2008 14:00:26 +0000 Subject: Correct _init()/_fini() for CRISv32 as suggested by Stefan de Konink. --- libc/sysdeps/linux/cris/crti.S | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'libc/sysdeps/linux/cris') diff --git a/libc/sysdeps/linux/cris/crti.S b/libc/sysdeps/linux/cris/crti.S index 0740c765d..d9e1397da 100644 --- a/libc/sysdeps/linux/cris/crti.S +++ b/libc/sysdeps/linux/cris/crti.S @@ -10,8 +10,12 @@ _init: move $srp,$r1 subq 4,$sp move.d $r0,[$sp] +#ifdef __arch_v32 + lapc _GLOBAL_OFFSET_TABLE_,$r0 +#else move.d $pc,$r0 sub.d .:GOTOFF,$r0 +#endif .align 1 .section .fini @@ -24,6 +28,10 @@ _fini: move $srp,$r1 subq 4,$sp move.d $r0,[$sp] +#ifdef __arch_v32 + lapc _GLOBAL_OFFSET_TABLE_,$r0 +#else move.d $pc,$r0 sub.d .:GOTOFF,$r0 +#endif .align 1 -- cgit v1.2.3