diff options
author | Mike Frysinger <vapier@gentoo.org> | 2007-01-05 09:09:22 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2007-01-05 09:09:22 +0000 |
commit | 3a3af36f1bef68c9942e9ef3fb83cc15aeabfcc0 (patch) | |
tree | cb5b06dfd527980b1b5cc6df57c5a46cf4f7953c /libc/sysdeps/linux/nios2/crtn.S | |
parent | 385a0b9d4fa0806c0f22e21d01f42b523c1b43cf (diff) |
Atle Nissestad writes: The attached patch fixes compilation of the current svn on the nios2 platform, and updates the crt1/n/i.S files to get CTOR/DTOR-support to work.
Diffstat (limited to 'libc/sysdeps/linux/nios2/crtn.S')
-rw-r--r-- | libc/sysdeps/linux/nios2/crtn.S | 24 |
1 files changed, 4 insertions, 20 deletions
diff --git a/libc/sysdeps/linux/nios2/crtn.S b/libc/sysdeps/linux/nios2/crtn.S index dfac2ab22..de00fd132 100644 --- a/libc/sysdeps/linux/nios2/crtn.S +++ b/libc/sysdeps/linux/nios2/crtn.S @@ -1,30 +1,14 @@ - .file "initfini.c" -#APP - + .section .init -#NO_APP - .balign 4 - .globl _init - .type _init, @function -#NO_APP + ldw ra, 0(sp) ldw fp, 4(sp) addi sp, sp, 8 ret - .size _init, .-_init -#APP - + .section .fini -#NO_APP - .balign 4 - .globl _fini - .type _fini, @function -#NO_APP + ldw ra, 0(sp) ldw fp, 4(sp) addi sp, sp, 8 ret - .size _fini, .-_fini -#APP - - .ident "GCC: (GNU) 3.3.2" |