mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 10:30:55 +08:00
* system.h (bcopy): Implement with memmove not memcpy.
From-SVN: r24727
This commit is contained in:
parent
ef2b940d6c
commit
b3c9dc1aea
@ -2,6 +2,8 @@ Sun Jan 17 21:04:31 1999 Richard Henderson <rth@cygnus.com>
|
||||
|
||||
* jump.c (rtx_renumbered_equal_p): Special case CODE_LABEL.
|
||||
|
||||
* system.h (bcopy): Implement with memmove not memcpy.
|
||||
|
||||
Sun Jan 17 19:23:20 1999 Jeffrey A Law (law@cygnus.com)
|
||||
|
||||
* Makefile.in (cppulp.o): Add dependencies.
|
||||
|
@ -220,7 +220,7 @@ extern int errno;
|
||||
extern void bcopy ();
|
||||
# endif
|
||||
# else /* ! HAVE_BCOPY */
|
||||
# define bcopy(src,dst,len) memcpy ((dst),(src),(len))
|
||||
# define bcopy(src,dst,len) memmove((dst),(src),(len))
|
||||
# endif
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user