diff options
author | Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> | 2008-02-20 14:27:12 +0000 |
---|---|---|
committer | Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> | 2008-02-20 14:27:12 +0000 |
commit | 1da9c2604f4879a1b35d9a5512cd808418d8488a (patch) | |
tree | 75d57130c5e27ea21bb14ce4c9a0a16145574e00 /libc/string/avr32/memmove.S | |
parent | d8f106289ffc338f15568f373b209f0c47755a54 (diff) |
Use HIDDEN_JUMPTARGET define instead of __GI_ directly in AVR32 files
This patch uses the HIDDEN_JUMPTARGET instead of the __GI_ prefix in AVR32
assembler files. This is done to follow the code style in uClibc.
Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
Diffstat (limited to 'libc/string/avr32/memmove.S')
-rw-r--r-- | libc/string/avr32/memmove.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/string/avr32/memmove.S b/libc/string/avr32/memmove.S index 659cdd199..8ca4da54d 100644 --- a/libc/string/avr32/memmove.S +++ b/libc/string/avr32/memmove.S @@ -15,7 +15,7 @@ .type memmove, @function memmove: cp.w src, dst - brge __GI_memcpy + brge HIDDEN_JUMPTARGET(memcpy) add dst, len add src, len |