From: Haavard Skinnemoen Date: Fri, 2 May 2008 13:24:22 +0000 (+0200) Subject: avr32: Put memset in its own section X-Git-Tag: v2008.10-rc1~283^2~23^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0c16eed2189a190bd5655b33c029f809a9b31128;p=platform%2Fkernel%2Fu-boot.git avr32: Put memset in its own section All C code is compiled with -ffunction-sections -fdata-sections. Assembly functions should get their own sections as well so that everything looks consistent. Signed-off-by: Haavard Skinnemoen --- diff --git a/lib_avr32/memset.S b/lib_avr32/memset.S index dc3b09b..79e3c67 100644 --- a/lib_avr32/memset.S +++ b/lib_avr32/memset.S @@ -27,7 +27,7 @@ * * Returns b in r12 */ - .text + .section .text.memset, "ax", @progbits .global memset .type memset, @function