Tail call to __stxcpy.

This commit is contained in:
Ulrich Drepper 2000-12-08 17:16:42 +00:00
parent fa6dc9e01e
commit de55c82792
2 changed files with 4 additions and 4 deletions

View File

@ -65,7 +65,7 @@ $found: negq t1, t2 # clear all but least set bit
/* Now do the append. */
jsr t9, __stxcpy
ret
mov ra, t9
jmp $31, __stxcpy
END(strcat)

View File

@ -35,7 +35,7 @@ ENTRY(strcpy)
.prologue 1
mov a0, v0 # set up return value
jsr t9, __stxcpy # do the copy
ret
mov ra, t9
jmp $31, __stxcpy # do the copy
END(strcpy)