1/* Copyright (c) 2003 Richard Sandiford <rsandifo@redhat.com> */ 2; This file exists to provide a movsd implementation of strcpy(). 3; Continue to use the generic version for targets other than h8sx. 4#ifdef __H8300SX__ 5#include "setarch.h" 6 7 .global _strcpy 8_strcpy: 9 stm.l er4-er6,@-er7 10 mov.l er0,er6 11 mov.l er1,er5 121: movsd 2f 13 bra 1b 142: rts/l er4-er6 15#endif 16