diff options
author | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2008-05-02 15:24:22 +0200 |
---|---|---|
committer | Haavard Skinnemoen <haavard.skinnemoen@atmel.com> | 2008-05-27 15:27:30 +0200 |
commit | 0c16eed2189a190bd5655b33c029f809a9b31128 (patch) | |
tree | 75e86454cd21c23f455b1ae5ce773328fa594b19 /lib_avr32 | |
parent | 3ace2527ba80bd2fe1bceaab50d0b3c4fb5dd020 (diff) | |
download | u-boot-0c16eed2189a190bd5655b33c029f809a9b31128.tar.gz |
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 <haavard.skinnemoen@atmel.com>
Diffstat (limited to 'lib_avr32')
-rw-r--r-- | lib_avr32/memset.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib_avr32/memset.S b/lib_avr32/memset.S index dc3b09b42f..79e3c675a9 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 |