diff options
Diffstat (limited to 'arch/h8300/lib/memset.S')
-rw-r--r-- | arch/h8300/lib/memset.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/h8300/lib/memset.S b/arch/h8300/lib/memset.S index 59abdf9485a5..4549a64c5b79 100644 --- a/arch/h8300/lib/memset.S +++ b/arch/h8300/lib/memset.S | |||
@@ -10,13 +10,13 @@ | |||
10 | #endif | 10 | #endif |
11 | .text | 11 | .text |
12 | 12 | ||
13 | .global SYMBOL_NAME(memset) | 13 | .global _memset |
14 | 14 | ||
15 | ;;void *memset(*ptr, int c, size_t count) | 15 | ;;void *memset(*ptr, int c, size_t count) |
16 | ;; ptr = er0 | 16 | ;; ptr = er0 |
17 | ;; c = er1(r1l) | 17 | ;; c = er1(r1l) |
18 | ;; count = er2 | 18 | ;; count = er2 |
19 | SYMBOL_NAME_LABEL(memset) | 19 | _memset: |
20 | btst #0,r0l | 20 | btst #0,r0l |
21 | beq 2f | 21 | beq 2f |
22 | 22 | ||