diff options
author | Jeffrey A Law <law@cygnus.com> | 2001-04-16 14:02:50 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2001-04-16 08:02:50 -0600 |
commit | 3bcd50fe2a2f55017b5cb03a34cc38986041cee6 (patch) | |
tree | ada562d2a85220e797265a05f4a304464d265ad3 | |
parent | c3aaa9215b497cf7526d3d961122f35dbc52b05a (diff) | |
download | gcc-3bcd50fe2a2f55017b5cb03a34cc38986041cee6.zip gcc-3bcd50fe2a2f55017b5cb03a34cc38986041cee6.tar.gz gcc-3bcd50fe2a2f55017b5cb03a34cc38986041cee6.tar.bz2 |
install.texi (mips-mips-bsd): Update list of functions required to include memmove.
* install.texi (mips-mips-bsd): Update list of functions
required to include memmove.
* tm.texi (TARGET_MEM_FUNCTIONS): Update list of implicitly
used functions to include memmove.
From-SVN: r41377
-rw-r--r-- | gcc/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/install.texi | 4 | ||||
-rw-r--r-- | gcc/tm.texi | 1 |
3 files changed, 10 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 42787a0..da7a5e7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,10 @@ +Mon Apr 16 08:03:48 2001 Jeffrey A Law (law@cygnus.com) + + * install.texi (mips-mips-bsd): Update list of functions + required to include memmove. + * tm.texi (TARGET_MEM_FUNCTIONS): Update list of implicitly + used functions to include memmove. + 2001-04-15 Toon Moene <toon@moene.indiv.nluug.nl> * i386.md (sqrtdf2): SFmode should be DFmode. diff --git a/gcc/install.texi b/gcc/install.texi index 65397a4..07c617c 100644 --- a/gcc/install.texi +++ b/gcc/install.texi @@ -1194,8 +1194,8 @@ between stages. @item mips-mips-bsd MIPS machines running the MIPS operating system in BSD mode. It's possible that some old versions of the system lack the functions -@code{memcpy}, @code{memcmp}, and @code{memset}. If your system lacks -these, you must remove or undo the definition of +@code{memcpy}, @code{memmove}, @code{memcmp}, and @code{memset}. If your +system lacks these, you must remove or undo the definition of @code{TARGET_MEM_FUNCTIONS} in @file{mips-bsd.h}. The MIPS C compiler needs to be told to increase its table size diff --git a/gcc/tm.texi b/gcc/tm.texi index 51dd01e..2b1a367 100644 --- a/gcc/tm.texi +++ b/gcc/tm.texi @@ -4393,6 +4393,7 @@ macro, a reasonable default is used. @findex TARGET_MEM_FUNCTIONS @cindex @code{bcopy}, implicit usage @cindex @code{memcpy}, implicit usage +@cindex @code{memmove}, implicit usage @cindex @code{bzero}, implicit usage @cindex @code{memset}, implicit usage @item TARGET_MEM_FUNCTIONS |